Game Rules Rules define game objects and define allowable actions by the players.

Slides:



Advertisements
Similar presentations
SOCiable A Game of Life Chances ©Jon Witt Version 1.0.
Advertisements

Articles: Indefinite and Definite
Mock Objects. Unit-testing and TDD are challenging They require some effort to: – Write a test for a small functionality – Refactor production code and.
UIL Chess Puzzle Practice Material
Apostles Chess Club Lesson #4. Algebraic Chess Notation System The board is set up from white’s position. Black must look at the board from the white.
CSE 332: Lab 6 overview Overview of Lab 6 Your Lab 6 program will –Correct a glitch in the lab 5 specification Use exceptions only for abnormal flow control.
Table of Contents Why Play Chess? Setting Up the Board Get to Know the Pieces Check and Checkmate What the Chess Pieces Are Worth Opening Goals Endgame.
L.O. Today you will learn how to play chess. How to Play Chess.
European Social Class and Chess By Chris Leonard.
Chess!!. Pawn How many pieces? 8 Value: Lowest What can it do? Move forward only one space at a time. Attack: Only Diagonally.
Introduction to Chess Naming the Chess Squares Names of the Pieces Initial Setup Materials taken from Teaching Chess Step By Step manuals, Books 1 and.
Module 3 Chess 101 Strategy Strategy refers to an overall plan to achieve a goal In every game you play your goal should be to checkmate your opponent,
Dealer Comm Hand Player makes Ante bet and optional Bonus bet. Five cards are dealt to each player from the shuffler. Five cards are dealt from the shuffler.
STRUCTURE OF VALUES Game pieces in chess are evaluated from two basic points of view: their weight with regard to a certain situation on the chessboard,
Intro to Probability & Games
VOCABULARY  Deck or pack  Suit  Hearts  Clubs  Diamonds  Spades  Dealer  Shuffle  Pick up  Rank  Draw  Set  Joker  Jack 
How to play Chess.
1 The game of poker You are given 5 cards (this is 5-card stud poker) The goal is to obtain the best hand you can The possible poker hands are (in increasing.
Chess Merit Badge Chess Basics: Set Up the Board & Basic Rules by Joseph L. Bell © 2011.
Game Rules Rules define game objects and define allowable actions by the players.
Panther Chess Club Sponsors: –Mr. Sergio Treviño (English, Room 408) –Mr. Felix Esquivel (Criminal Justice, Room 50) Meetings every Monday and Wednesday.
Paigow Training Hai J Shen International Association of Certified Surveillance Professionals.
Poker Solutions.
3.8 Counting Techniques: Combinations. If you are dealt a hand in poker (5 cards), does it matter in which order the cards are dealt to you? A  K  J.
Tulsa.NET User Group INTRO TO OBJECT ORIENTED PROGRAMMING.
Apostles Chess Club Session Three. Chess Piece Symbols The symbols shown above are the ones most used when showing chess pieces in print or on the internet.
Welcome to Chess Class This will program will show you basic Chess moves Copyright William J Capehart.
How to Play Chess By: John. Dedication I dedicate this project to my family because we all love chess.
Basic Probability Section 7.1. Definitions Sample Space: The set of all possible outcomes in a given experiment or situation Often denoted by S Event:
How to Play Chess. Name of Each Piece The relative values of the chess pieces 9 points 5 points 3+ points 3 points 1 point.
Chess By Kezia Farley.
Lesson 1 History of Chess Why We Teach Chess Goal of Chess.
Chess By Kyle Fischer. What is chess? Chess is a game that you try to get the other person’s king in a checkmate.
Four important rules of Castling: 1) The King and Rook may not have moved from their starting squares 2) All spaces between the King and Rook must be empty.
Each piece is represented by a symbol. The pieces all stand in the same position at the start of the game the pieces are the Rook, the Knight, the Bishop,
CHESS. Write what you already know about chess on a piece of paper which I will hand out now.
 m C r =m!/r!(m-r)!  Property: m C r = m C (m-r)  Example: ◦ If you have 10 pens, all in different colors, and you want to bring two of them to class,
CHESS. Write what you already know about chess on a piece of paper which I will hand out now.
ENEE150 – 0102 ANDREW GOFFIN Functional Decomposition.
CHESS 2: Castling and Forking…and a Stalemate A Levoy Power Point.
Every chess master was once a beginner. Irving Chernev
All In To put all the rest of your money into the pot.
Chess Strategies Component Skills Strategies Prototype Josh Waters, Ty Fenn, Tianyu Chen.
Game Procedures Who does what, where, when, and how?
CHESS Basics for Beginners. BOARD SET-UP The letters go across the board in front of you. “White on right!” Each player has a white square in their right.
A Levoy PowerPoint Presentation
Introduction to Poker Originally created by Albert Wu,
© 2014 International Technology and Engineering Educators Association, STEM  Center for Teaching and Learning™ Game Art and Design Unit 3 Lesson 3 Procedure.
CHESS Club.  The game of chess is over 1300 years old and is one of the most popular games in the world. It has received more total thought time than.
By: John Cook 11/06/2009 PTTE John Cook 3/4/2016.
Probability and statistics - overview Introduction Basics of probability theory Events, probability, different types of probability Random variable, probability.
Texas Holdem A Poker Variant vs. Flop TurnRiver. How to Play Everyone is dealt 2 cards face down (Hole Cards) 5 Community Cards Best 5-Card Hand Wins.
Welcome to Chess Class This will program will show you basic Chess moves.
CHESS “The Ultimate GAME of Challenge and Strategy”
Objectives Students will
Art of Chess Founders: Aaron Chee , Zach Knizer, Daniel Ajisafe, and Austin Plunk Awesome Teacher/Sponsor: Mr. Throop.
Who does what, where, when, and how?
Game Art and Design Unit 3 Lesson 4 Probability
CHESS PIECES.
CHESS.
How to play chess ? By Peter Mann A Beginners Guide.
THE TEXAS HOLD’EM.
Game Art and Design Unit 3 Lesson 3 Procedure and Rules
Articles: Indefinite and Definite
Game Art and Design Unit 3 Lesson 3 Procedures and Rules
Probability of casino games
Mathematics for Computer Science MIT 6.042J/18.062J
Every chess master was once a beginner. Irving Chernev
Term Project: Poker Game
Strategic Thinking There are two concepts that all chess players must understand from the start; strategy and tactics. Beginners often confuse the two.
Presentation transcript:

Game Rules Rules define game objects and define allowable actions by the players

Game Rules Consider these questions: – How do players learn the rules? – How are the rules enforced? – What kinds of rules work best in certain situations? – Are there patterns to rule sets? What can we learn from these patterns?

Game Rules Rules are generally laid out in the rules document of board and card games. The players must remember and apply the rules. Rules in digital games may be explained in the manual, or they may be designed into the program. The program applies the rules and prevents breaking the rules.

Game Rules Rules may close loopholes in a game’s system. Consider the game of Monopoly: – “Do not pass go, do not collect $200”. This rule is applied when a player is sent to jail from any spot on the board. – The rule is important because a player could make the argument that moving past “Go” entitles him to collect $200, turning a punishment into a reward.

Game Rules Too many rules may make your game unplayable. Too few rules may make your game so simple as to be unchallenging. Poorly communicated rules may confuse or alienate players. Even in digital games, where the rules are kept by the program, players need to clearly understand the rules so they do not feel cheated.

Examples of Game Rules Poker: A straight is five consecutively ranked cards; a straight flush is five consecutively ranked cards of the same suit. Chess: A player cannot move her king into check. Go: A player cannot make a move that recreates a previous situation on the board. WarCraft II: In order to create knight units, a player must have upgraded to keep and build a stable. You Don’t Know Jack: If a player answers a question incorrectly, the other players get a chance to answer.

Rules Define Objects & Concepts Games do not inherit objects from the real world; rather, they create their own objects and concepts, usually as part of the rule set. Even if the objects or concepts are familiar, they still need to be defined by the rules. Consider the Poker rule regarding the concept of a “Straight” or a Straight Flush”: – There is no “Straight” outside the realm of poker. – When you learn the rules of poker, one of the key concepts is to learn the make-up and values of certain hands.

Poker Hands A STRAIGHT refers to five cards in numerical order (3, 4, 5, 6, 7 or 7, 8, 9, 10, J, for example), with the cards belonging to various suits.

Poker Hands FOUR OF A KIND refers to four cards of matching numerical value and one extra card

Poker Hands A STRAIGHT FLUSH is a straight with all cards belonging to the same suit

Poker Hands A ROYAL FLUSH contains the 10, jack, queen, king and ace of a single suit

Royal Flush Straight Flush Four of a Kind Full House Flush Straight Three of a Kind Two Pair Pair High Card LOW HAND HIGH HAND

Chess uses objects that relate to the real world, but chess simply uses the notion of King, Queen, etc. to give context to the behavior and value of the pieces. – King – Queen – Rook – Bishop – Knight – Pawn

The game pieces of Monopoly do not have separate values or inherit unique powers. The rule concerning these pieces is that they represent a single player and locate the player’s position on the game board. Players often argue over who gets what piece, but in terms of gameplay rules, it doesn’t make any difference. That’s the rule as spelled out in Monopoly.

Game Rules

THE END