TITANIC: Added remainder of CStarControl class

This commit is contained in:
Paul Gilbert 2017-02-27 09:08:34 -05:00
parent 2dab510bee
commit 1f99c01f12
4 changed files with 24 additions and 8 deletions

View File

@ -103,6 +103,8 @@ public:
void clear();
void initialize();
int size() const { return _data.size(); }
};
} // End of namespace Titanic

View File

@ -72,7 +72,7 @@ void CStarControl::load(SimpleFile *file) {
_view.load(file, 0);
CScreenManager *screenManager = CScreenManager::setCurrent();
if (!screenManager)
error("There's no screen manager during loading");
error("There's no screen manager during loading");
_view.setup(screenManager, &_starField, this);
_view.reset();
@ -131,7 +131,21 @@ bool CStarControl::FrameMsg(CFrameMsg *msg) {
}
void CStarControl::newFrame() {
// TODO
if (!_petControl)
_petControl = getPetControl();
if (_petControl) {
int val1 = _starField.get88();
int val2 = 0;
if (!_starField.get3()) {
val2 = _starField.get5();
if ((val1 + 2) == _starField.get7Count())
val2 = 0;
}
_petControl->starsSetButtons(val1, val2);
}
}
void CStarControl::doAction(StarControlAction action) {
@ -238,10 +252,7 @@ void CStarControl::doAction(StarControlAction action) {
case STAR_19:
_view.petDestinationSet();
break;
}
// TODO
}
bool CStarControl::isSolved() const {

View File

@ -26,6 +26,7 @@
#include "titanic/core/game_object.h"
#include "titanic/star_control/star_field.h"
#include "titanic/star_control/star_view.h"
#include "titanic/pet_control/pet_control.h"
namespace Titanic {
@ -40,9 +41,7 @@ private:
CStarField _starField;
CStarView _view;
Rect _starRect;
#if 0
int _field80B0;
#endif
CPetControl *_petControl;
private:
/**
* Called for ever new game frame

View File

@ -87,6 +87,10 @@ public:
* Returns true if the starfield puzzle has been solved
*/
bool isSolved() const;
int get7Count() const {
return _sub7.size();
}
};
} // End of namespace Titanic