diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-11-19 15:58:06 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-11-19 15:58:06 +0000 |
commit | ff858300d4b303d4c48b2d915ac6cea30182aa8d (patch) | |
tree | 786c2808202abdae93d6a48c2272b66f28da6a94 /src/game.h | |
parent | a2cc2aa19f7dacdd719c9459cdfedb952e0c8d09 (diff) | |
download | mana-ff858300d4b303d4c48b2d915ac6cea30182aa8d.tar.gz mana-ff858300d4b303d4c48b2d915ac6cea30182aa8d.tar.bz2 mana-ff858300d4b303d4c48b2d915ac6cea30182aa8d.tar.xz mana-ff858300d4b303d4c48b2d915ac6cea30182aa8d.zip |
Hair styles
Diffstat (limited to 'src/game.h')
-rw-r--r-- | src/game.h | 56 |
1 files changed, 29 insertions, 27 deletions
@@ -2,22 +2,26 @@ The Mana World Copyright 2004 The Mana World Development Team - - This file is part of The Mana World. - - The Mana World is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - any later version. - - The Mana World is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with The Mana World; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + This file is part of The Mana World. + + The Mana World is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + any later version. + + The Mana World is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with The Mana World; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + By ElvenProgrammer aka Eugenio Favalli (umperio@users.upagiro.net) + + kth5 aka Alexander Baldeck */ @@ -44,19 +48,17 @@ #define MAKECOL_WHITE makecol(255,255,255) #define MAKECOL_BLACK makecol(0,0,0) -#define GET_WALKING_SPEECH_XCOORDS ((get_x(node->coordinates)-map_x+13)*16-25-(alfont_text_length(gui_font, node->speech)/2)-player_x-coeff_x*(16-4*node->frame)) -#define GET_WALKING_SPEECH_YCOORDS ((get_y(node->coordinates)-map_y+6)*16-55-player_y-coeff_y*(16-4*node->frame)) - -#define GET_STANDING_SPEECH_XCOODRS ((get_x(node->coordinates)-map_x+13)*16-25-(alfont_text_length(gui_font, node->speech)/2)-player_x) -#define GET_STANDING_SPEECH_YCOORDS ((get_y(node->coordinates)-map_y+6)*16-55-player_y) - -#define PLAYERSETS 4 -#define SIT 9 -#define STAND 0 -#define WALK 1 +// Action defines +#define STAND 0 +#define WALK 1 +#define ATTACK 5 +#define BOW_ATTACK 9 +#define SIT 13 +#define HIT 14 +#define DEAD 15 #define MONSTER_ATTACK 5 #define MONSTER_DEAD 9 -#define ATTACK 5 + #define LOCK 254 #define IDLE 255 |