summaryrefslogtreecommitdiff
path: root/Unit.cpp
Commit message (Collapse)AuthorAgeFilesLines
* * Increased MAX_SELECTION_DISTANCE, but this should be done according to ↵HEADmasterXaviDCR922018-08-051-2/+45
| | | | | | | | BaseUnit instead! + BaseUnit now takes a pointer to a Camera object. + Implemented Unit basic movement. + Initial stub for Coordinates class, meant to replace all manual X/Y coordinates handling between classes.
* + Started unit selection implementation. Not finished yet.XaviDCR922018-08-021-0/+2
|
* * Menu.cpp: actions for CHOICE_SINGLE_PLAYER_GAME have been moved to a new ↵XaviDCR922018-07-261-2/+0
| | | | | | | | | | | | | function called MainMenuSinglePlayer(). + BaseUnit.cpp, BaseUnit.h: new _selected flag. + Camera.cpp, Camera.h: linear movement has been taken over quadratic movement. Also, cursor now moves if dealing with screen borders. + Cursor.cpp, Cursor.h: new Cursor class holds cursor X/Y information. It is meant to be contained inside a HumanPlayer object. * Game.cpp: minor changes in casts and comments. + HumanPlayer.cpp: added callbacks for button release events. * HumanPlayer.cpp, HumanPlayerBtn.cpp: button handling has been transferred from HumanPlayer.cpp to HumanPlayerBtn.cpp in order to improve modularity. + Sprite.cpp: sprite data was not being checked against NULL. - Unit.cpp: drawHandler() is now executed by Player object.
* Camera is now an independent instance, and HumanPlayer only holds a ↵XaviDCR922018-07-101-18/+54
| | | | reference to it.
* More work on Unit/BaseUnit concepts.XaviDCR922018-07-101-0/+102
|
* Unit renamed to BaseUnit.XaviDCR922018-07-091-39/+0
|
* Fixed "includes/defines/local variables" headers.XaviDCR922018-07-091-16/+20
|
* Game has been restructured in favor of OOPXaviDCR922018-07-091-0/+35
|
* * Player can now select nearest unit or building. Multiple buildings and ↵XaviDCR922017-03-121-108/+0
| | | | | | | units can be selected at the same time. * Unit module moved from C++ to C (only extension change - and compiler - was needed). * GfxGetHeightFromSpriteData and GfxGetWidthFromSpriteData were getting incorrect data! Incorrect memory address was being read when calling pgm_read_byte, and caused unexpected behaviour under real hw.
* * Nearest unit and/or building is found (no sqrt method used).XaviDCR922017-03-091-27/+54
| | | | | | * Preliminar unit/building selection algorithm. * Added cursor onscreen. - Removed old Peasant sprites. Only 2 sprites needed!
* + Initial commit. Added source, sprites and final executable.XaviDCR922017-03-071-0/+81