GROOVIE: More work on the wine rack puzzle

This commit is contained in:
Filippos Karapetis 2021-10-28 17:03:14 +03:00
parent cc4f5d9f68
commit 720c92e451

View File

@ -36,22 +36,25 @@ WineRackGame::WineRackGame() : _random("WineRackGame"), _totalBottles(0) {
void WineRackGame::run(byte *scriptVariables) { void WineRackGame::run(byte *scriptVariables) {
char op = scriptVariables[3]; char op = scriptVariables[3];
byte pos = 0;
switch (op) { switch (op) {
case 3: case 3:
initGrid(scriptVariables[4]); initGrid(scriptVariables[4]);
break; break;
case 4: case 4:
placeBottle(calculateNextMove(2), 2); pos = calculateNextMove(2);
scriptVariables[0] = op / 10; placeBottle(pos, 2);
scriptVariables[1] = op % 10; scriptVariables[0] = pos / 10;
scriptVariables[1] = pos % 10;
//scriptVariables[3] = (char)FUN_00412c90(); //scriptVariables[3] = (char)FUN_00412c90();
break; break;
case 5: case 5:
scriptVariables[3] = 0; scriptVariables[3] = 0;
placeBottle(calculateNextMove(1), 1); pos = calculateNextMove(1);
scriptVariables[0] = op / 10; placeBottle(pos, 1);
scriptVariables[1] = op % 10; scriptVariables[0] = pos / 10;
scriptVariables[1] = pos % 10;
//if ((char)FUN_00412cf0() != 0) { //if ((char)FUN_00412cf0() != 0) {
// scriptVariables[3] = 1; // scriptVariables[3] = 1;
//} //}
@ -64,9 +67,10 @@ void WineRackGame::run(byte *scriptVariables) {
// return; // return;
//} //}
placeBottle(calculateNextMove(1), 1); pos = calculateNextMove(1);
scriptVariables[0] = op / 10; placeBottle(pos, 1);
scriptVariables[1] = op % 10; scriptVariables[0] = pos / 10;
scriptVariables[1] = pos % 10;
//if ((char)FUN_00412cf0() != 0) { //if ((char)FUN_00412cf0() != 0) {
// scriptVariables[3] = 1; // scriptVariables[3] = 1;