view game.h @ 10:b000c4765eca

*** empty log message ***
author gongo
date Sat, 04 Nov 2006 08:39:47 +0000
parents f60cb9a39d7a
children 0c8300ffa038
line wrap: on
line source

/*
 * $Id$
 */

typedef enum game_state {
    GAME_INIT,
    GAME_OPENING,
    GAME_SELECT_CAR,
    GAME_WAIT,
    GAME_SELECT_COURSE,
    GAME_READY,
    GAME_MAIN_INIT,
    GAME_MAIN,
    GAME_PAUSE,
    GAME_GOAL,
    GAME_FINISH
} GAME_STATE;

typedef struct game {
    GAME_STATE state;
    void* (*exec)();
    CarPtr jiki;
    int course_id;   // $B%3!<%9(BID
    int car_id;      // $B<+5!(BID
    int camera_type; // $B%+%a%i$N%?%$%W(B
    int select;      // $BA*BrMQJQ?t!)$$$i$J$$$+(B
    int play_id;
    int rap;
} Game, *GamePtr;

extern Game game;