• Main Page
  • Classes
  • Files
  • File List
  • File Members

code/include/defines/defines_Player.h

Go to the documentation of this file.
00001 /*
00002  * TetriCycle
00003  * Copyright (C) 2009, 2010 Cale Scholl
00004  *
00005  * This file is part of TetriCycle.
00006  *
00007  * TetriCycle is free software: you can redistribute it and/or modify
00008  * it under the terms of the GNU Lesser General Public License as published
00009  * by the Free Software Foundation, either version 3 of the License, or
00010  * (at your option) any later version.
00011  *
00012  * TetriCycle is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU Lesser General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU Lesser General Public License
00018  * along with TetriCycle.  If not, see <http://www.gnu.org/licenses/>.
00019  */
00020 
00021 /** @file defines_Player.h
00022  * @brief Defines for the Player class.
00023  * @author Cale Scholl / calvinss4
00024  */
00025 
00026 #pragma once
00027 #ifndef __DEFINES_PLAYER_H__
00028 #define __DEFINES_PLAYER_H__
00029 
00030 #define DEFAULT_PLAYFIELD_WIDTH 10
00031 #define DEFAULT_PLAYFIELD_HEIGHT 20
00032 #define DEFAULT_PLAYFIELD_SCALE 10
00033 #define DEFAULT_CUBE_ANGLE 10
00034 #define DEFAULT_PLAYFIELD_DX 0
00035 #define DEFAULT_PLAYFIELD_DY 0
00036 #define DEFAULT_MAX_PLAYLINES 30
00037 #define DEFAULT_ATTACK_RATE 3
00038 #define DEFAULT_POWERUP_RATE 5
00039 
00040 #define MIN_PLAYFIELD_WIDTH 10
00041 #define MIN_PLAYFIELD_HEIGHT 20
00042 #define MIN_PLAYFIELD_SCALE 1
00043 #define MIN_CUBE_ANGLE 0
00044 
00045 #define MAX_PLAYFIELD_WIDTH 30
00046 #define MAX_PLAYFIELD_HEIGHT 20
00047 #define MAX_PLAYFIELD_SCALE 15
00048 #define MAX_PLAYFIELD_DELTA 995
00049 
00050 #define MAX_ACQUIRED_POWERUPS 3
00051 #define MAX_POWERUP_EFFECTS 2
00052 
00053 #endif // __DEFINES_PLAYER_H__

Generated on Wed Oct 20 2010 17:06:58 for TetriCycle by  doxygen 1.7.1