mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-05 02:17:05 +00:00
AVALANCHE: Add some brackets to improve readability
This commit is contained in:
parent
b690c9ad31
commit
31bd1369d9
@ -517,10 +517,9 @@ void Acci::parse() {
|
||||
|
||||
if (_vm->_parser->pos(Common::String('\xFE'), _thats) > -1)
|
||||
_unknown = _realWords[_vm->_parser->pos(Common::String('\xFE'), _thats)];
|
||||
else {
|
||||
if (!_unknown.empty())
|
||||
_unknown.clear();
|
||||
}
|
||||
else if (!_unknown.empty())
|
||||
_unknown.clear();
|
||||
|
||||
// Replace words' codes that mean the same.
|
||||
replace(Common::String('\xFF'), 0); // zap noise words
|
||||
replace(Common::String('\xD') + '\xE2', 1); // "look at" = "examine"
|
||||
|
@ -145,40 +145,42 @@ void Scrolls::normscroll() {
|
||||
|
||||
|
||||
|
||||
// char r;
|
||||
// bool oktoexit;
|
||||
// do {
|
||||
// do {
|
||||
// _vm->_gyro->check(); // was "checkclick;"
|
||||
//
|
||||
#if 0
|
||||
char r;
|
||||
bool oktoexit;
|
||||
do {
|
||||
do {
|
||||
_vm->_gyro->check(); // was "checkclick;"
|
||||
|
||||
//#ifdef RECORD slowdown(); basher::count += 1; #endif
|
||||
//
|
||||
// if (_vm->_gyro->demo) {
|
||||
// if (_vm->_basher->demo_ready())
|
||||
// break;
|
||||
// if (_vm->_enhanced->keypressede())
|
||||
// return;
|
||||
// } else if (_vm->_enhanced->keypressede())
|
||||
// break;
|
||||
// } while (!((mrelease > 0) || (buttona1()) || (buttonb1())));
|
||||
//
|
||||
//
|
||||
// if (mrelease == 0) {
|
||||
// inkey();
|
||||
// if (aboutscroll) {
|
||||
// move(e[2 - 1], e[1 - 1], 7);
|
||||
// e[8 - 1] = inchar;
|
||||
// if (egg == e) easteregg();
|
||||
// }
|
||||
// oktoexit = set::of('\15', '\33', '+', '#', eos).has(inchar);
|
||||
// if (! oktoexit) errorled();
|
||||
// }
|
||||
//
|
||||
// } while (!((oktoexit) || (mrelease > 0)));
|
||||
//
|
||||
|
||||
if (_vm->_gyro->demo) {
|
||||
if (_vm->_basher->demo_ready())
|
||||
break;
|
||||
if (_vm->_enhanced->keypressede())
|
||||
return;
|
||||
} else if (_vm->_enhanced->keypressede())
|
||||
break;
|
||||
} while (!((mrelease > 0) || (buttona1()) || (buttonb1())));
|
||||
|
||||
|
||||
if (mrelease == 0) {
|
||||
inkey();
|
||||
if (aboutscroll) {
|
||||
move(e[2 - 1], e[1 - 1], 7);
|
||||
e[8 - 1] = inchar;
|
||||
if (egg == e) easteregg();
|
||||
}
|
||||
oktoexit = set::of('\15', '\33', '+', '#', eos).has(inchar);
|
||||
if (! oktoexit) errorled();
|
||||
}
|
||||
|
||||
} while (!((oktoexit) || (mrelease > 0)));
|
||||
|
||||
//#ifdef RECORD record_one(); #endif
|
||||
//
|
||||
// _vm->_gyro->screturn = r == '#'; // "back door"
|
||||
|
||||
_vm->_gyro->screturn = r == '#'; // "back door"
|
||||
#endif
|
||||
|
||||
state(0);
|
||||
_vm->_gyro->seescroll = false;
|
||||
@ -647,18 +649,17 @@ void Scrolls::calldrivers() {
|
||||
|
||||
uint16 size = _vm->_gyro->bufsize;
|
||||
|
||||
for (fv = 0; fv < size; fv++)
|
||||
for (fv = 0; fv < size; fv++) {
|
||||
if (mouthnext) {
|
||||
if (_vm->_gyro->buffer[fv] == kControlRegister)
|
||||
param = 0;
|
||||
else
|
||||
if (('0' <= _vm->_gyro->buffer[fv]) && (_vm->_gyro->buffer[fv] <= '9'))
|
||||
param = _vm->_gyro->buffer[fv] - 48;
|
||||
else if (('A' <= _vm->_gyro->buffer[fv]) && (_vm->_gyro->buffer[fv] <= 'Z'))
|
||||
param = _vm->_gyro->buffer[fv] - 55;
|
||||
else if (('0' <= _vm->_gyro->buffer[fv]) && (_vm->_gyro->buffer[fv] <= '9'))
|
||||
param = _vm->_gyro->buffer[fv] - 48;
|
||||
else if (('A' <= _vm->_gyro->buffer[fv]) && (_vm->_gyro->buffer[fv] <= 'Z'))
|
||||
param = _vm->_gyro->buffer[fv] - 55;
|
||||
|
||||
mouthnext = false;
|
||||
} else
|
||||
} else {
|
||||
switch (_vm->_gyro->buffer[fv]) {
|
||||
case kControlParagraph: {
|
||||
if ((_vm->_gyro->scrolln == 1) && (_vm->_gyro->scroll[0].empty()))
|
||||
@ -689,13 +690,13 @@ void Scrolls::calldrivers() {
|
||||
|
||||
if (param == 0)
|
||||
natural();
|
||||
else if ((1 <= param) && (param <= 9))
|
||||
else if ((1 <= param) && (param <= 9)) {
|
||||
if ((param > _vm->_trip->numtr) || (!_vm->_trip->tr[param - 1].quick)) { // Not valid.
|
||||
_vm->_lucerna->errorled();
|
||||
natural();
|
||||
} else
|
||||
_vm->_trip->tr[param - 1].chatter(); // Normal sprite talking routine.
|
||||
else if ((10 <= param) && (param <= 36)) {
|
||||
} else if ((10 <= param) && (param <= 36)) {
|
||||
// Quasi-peds. (This routine performs the same
|
||||
// thing with QPs as triptype.chatter does with the
|
||||
// sprites.)
|
||||
@ -802,6 +803,8 @@ void Scrolls::calldrivers() {
|
||||
_vm->_gyro->scroll[_vm->_gyro->scrolln - 1] += _vm->_gyro->buffer[fv];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Scrolls::display(Common::String z) { // TODO: REPLACE BUFFER WITH A STRING!!!!!!!!!!
|
||||
|
@ -480,20 +480,23 @@ byte Trip::checkfeet(int16 x1, int16 x2, int16 oy, int16 y, byte yl) {
|
||||
x1 = 0;
|
||||
if (x2 > 639)
|
||||
x2 = 639;
|
||||
if (oy < y)
|
||||
for (fv = x1; fv <= x2; fv++)
|
||||
if (oy < y) {
|
||||
for (fv = x1; fv <= x2; fv++) {
|
||||
for (ff = oy + yl; ff <= y + yl; ff++) {
|
||||
c = *(byte *)_vm->_graphics->_magics.getBasePtr(fv, ff);
|
||||
if (c > a)
|
||||
a = c;
|
||||
}
|
||||
else
|
||||
for (fv = x1; fv <= x2; fv++)
|
||||
}
|
||||
} else {
|
||||
for (fv = x1; fv <= x2; fv++) {
|
||||
for (ff = y + yl; ff <= oy + yl; ff++) {
|
||||
c = *(byte *)_vm->_graphics->_magics.getBasePtr(fv, ff);
|
||||
if (c > a)
|
||||
a = c;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//setactivepage(1 - cp);
|
||||
return a;
|
||||
@ -1581,7 +1584,7 @@ void Trip::handleMoveKey(const Common::Event &event) {
|
||||
|
||||
if (_vm->_dropdown->_activeMenuItem._activeNow)
|
||||
_vm->_parser->tryDropdown();
|
||||
else
|
||||
else {
|
||||
switch (event.kbd.keycode) {
|
||||
case Common::KEYCODE_UP:
|
||||
if (_vm->_gyro->dna.rw != up) {
|
||||
@ -1645,6 +1648,7 @@ void Trip::handleMoveKey(const Common::Event &event) {
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user