mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
TITANIC: Added remainder of CStarControl class
This commit is contained in:
parent
2dab510bee
commit
1f99c01f12
@ -103,6 +103,8 @@ public:
|
||||
void clear();
|
||||
|
||||
void initialize();
|
||||
|
||||
int size() const { return _data.size(); }
|
||||
};
|
||||
|
||||
} // End of namespace Titanic
|
||||
|
@ -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 {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user