aboutsummaryrefslogtreecommitdiff
path: root/boxes.cpp
diff options
context:
space:
mode:
authorMax Horn2002-08-15 16:46:29 +0000
committerMax Horn2002-08-15 16:46:29 +0000
commit7c1a174e533dcd0590fb667d4257826f38c71ca7 (patch)
treefced9a419bb4a237d18e25d68a37f709e34ddd6d /boxes.cpp
parent105f966c6a66803653db90a01303cee3a08e5c0d (diff)
downloadscummvm-rg350-7c1a174e533dcd0590fb667d4257826f38c71ca7.tar.gz
scummvm-rg350-7c1a174e533dcd0590fb667d4257826f38c71ca7.tar.bz2
scummvm-rg350-7c1a174e533dcd0590fb667d4257826f38c71ca7.zip
first attempt to implement the difference between the box lock and box invisible flag. fixes the counter bug and all of the bugs introduced to my fix for the bus bug; but the bus bug is back, will look into that next
svn-id: r4745
Diffstat (limited to 'boxes.cpp')
-rw-r--r--boxes.cpp50
1 files changed, 26 insertions, 24 deletions
diff --git a/boxes.cpp b/boxes.cpp
index 23c74837da..25db3eb9f7 100644
--- a/boxes.cpp
+++ b/boxes.cpp
@@ -54,6 +54,8 @@ struct PathVertex { /* Linked list of walkpath nodes */
PathNode *right;
};
+#define BOX_MATRIX_SIZE 2000
+
PathVertex *unkMatrixProc1(PathVertex *vtx, PathNode *node);
@@ -67,6 +69,20 @@ byte Scumm::getMaskFromBox(int box)
return ptr->mask;
}
+void Scumm::setBoxFlags(int box, int val)
+{
+ debug(1, "setBoxFlags(%d, 0x%02x)", box, val);
+
+ /* FULL_THROTTLE stuff */
+ if (val & 0xC000) {
+ assert(box >= 0 && box < 65);
+ _extraBoxFlags[box] = val;
+ } else {
+ Box *b = getBoxBaseAddr(box);
+ b->flags = val;
+ }
+}
+
byte Scumm::getBoxFlags(int box)
{
Box *ptr = getBoxBaseAddr(box);
@@ -75,6 +91,12 @@ byte Scumm::getBoxFlags(int box)
return ptr->flags;
}
+void Scumm::setBoxScale(int box, int scale)
+{
+ Box *b = getBoxBaseAddr(box);
+ b->scale = scale;
+}
+
int Scumm::getBoxScale(int box)
{
if (_features & GF_NO_SCALLING)
@@ -119,7 +141,7 @@ int Scumm::getSpecialBox(int param1, int param2)
for (i = numOfBoxes; i >= 0; i--) {
flag = getBoxFlags(i);
- if (!(flag & 0x80) && (flag & 0x20))
+ if (!(flag & kBoxInvisible) && (flag & kBoxPlayerOnly))
return (-1);
if (checkXYInBoxBounds(i, param1, param2))
@@ -541,26 +563,6 @@ bool Scumm::findPathTowards(Actor *a, byte box1nr, byte box2nr, byte box3nr, int
return false;
}
-void Scumm::setBoxFlags(int box, int val)
-{
- /* FULL_THROTTLE stuff */
- if (val & 0xC000) {
- assert(box >= 0 && box < 65);
- _extraBoxFlags[box] = val;
- } else {
- Box *b = getBoxBaseAddr(box);
- b->flags = val;
- }
-}
-
-void Scumm::setBoxScale(int box, int scale)
-{
- Box *b = getBoxBaseAddr(box);
- b->scale = scale;
-}
-
-#define BOX_MATRIX_SIZE 2000
-
void Scumm::createBoxMatrix()
{
byte *matrix_ptr;
@@ -603,7 +605,7 @@ void Scumm::createBoxMatrix()
for (j = 0; j < num; j++) {
flags = getBoxFlags(j);
- if (flags & 0x80) {
+ if (flags & kBoxInvisible) {
addToBoxMatrix(0xFF);
addToBoxMatrix(j);
addToBoxMatrix(j);
@@ -612,7 +614,7 @@ void Scumm::createBoxMatrix()
vtx = addPathVertex();
for (i = 0; i < num; i++) {
flags = getBoxFlags(j);
- if (!(flags & 0x80)) {
+ if (!(flags & kBoxInvisible)) {
node = unkMatrixProc2(vtx, i);
if (i == j)
node2 = node;
@@ -752,7 +754,7 @@ bool Scumm::areBoxesNeighbours(int box1nr, int box2nr)
BoxCoords box;
BoxCoords box2;
- if (getBoxFlags(box1nr) & 0x80 || getBoxFlags(box2nr) & 0x80)
+ if (getBoxFlags(box1nr) & kBoxInvisible || getBoxFlags(box2nr) & kBoxInvisible)
return false;
getBoxCoordinates(box1nr, &box2);