aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2017-05-20 20:45:56 -0400
committerPaul Gilbert2017-05-20 20:45:56 -0400
commitc4134a9e92125c6bf31aa76621944288f4dd3f48 (patch)
tree36f8b5d1b5352dea1d2742e4dee97a70e0b84797
parent7fb217b30b033402ec41221b656e4907bd78d2f2 (diff)
downloadscummvm-rg350-c4134a9e92125c6bf31aa76621944288f4dd3f48.tar.gz
scummvm-rg350-c4134a9e92125c6bf31aa76621944288f4dd3f48.tar.bz2
scummvm-rg350-c4134a9e92125c6bf31aa76621944288f4dd3f48.zip
TITANIC: Method renamings in star control camera classes
-rw-r--r--engines/titanic/star_control/camera_mover.h2
-rw-r--r--engines/titanic/star_control/star_control_sub21.cpp4
-rw-r--r--engines/titanic/star_control/star_control_sub21.h2
-rw-r--r--engines/titanic/star_control/star_control_sub23.cpp2
-rw-r--r--engines/titanic/star_control/star_control_sub23.h2
-rw-r--r--engines/titanic/star_control/star_control_sub24.cpp36
-rw-r--r--engines/titanic/star_control/star_control_sub24.h4
-rw-r--r--engines/titanic/star_control/star_control_sub25.cpp8
-rw-r--r--engines/titanic/star_control/star_control_sub25.h2
9 files changed, 31 insertions, 31 deletions
diff --git a/engines/titanic/star_control/camera_mover.h b/engines/titanic/star_control/camera_mover.h
index c3528f88a2..b9c336294a 100644
--- a/engines/titanic/star_control/camera_mover.h
+++ b/engines/titanic/star_control/camera_mover.h
@@ -78,7 +78,7 @@ public:
/**
* Start a movement to a given specified destination
*/
- virtual void moveTo(const FVector &srcV, const FVector &destV, const FMatrix &srcM) {}
+ virtual void moveTo(const FVector &srcV, const FVector &destV, const FMatrix &orientation) {}
virtual void proc10(const FVector &v1, const FVector &v2, const FVector &v3, const FMatrix &m) {}
diff --git a/engines/titanic/star_control/star_control_sub21.cpp b/engines/titanic/star_control/star_control_sub21.cpp
index 26510c0e7c..86109a11ac 100644
--- a/engines/titanic/star_control/star_control_sub21.cpp
+++ b/engines/titanic/star_control/star_control_sub21.cpp
@@ -32,13 +32,13 @@ CStarControlSub21::CStarControlSub21(const CNavigationInfo *src) :
CCameraMover(src) {
}
-void CStarControlSub21::moveTo(const FVector &srcV, const FVector &destV, const FMatrix &srcM) {
+void CStarControlSub21::moveTo(const FVector &srcV, const FVector &destV, const FMatrix &orientation) {
if (isLocked())
decLockCount();
debugC(DEBUG_BASIC, kDebugStarfield, "Starfield move %s to %s", srcV.toString().c_str(),
destV.toString().c_str());
- _sub24.setPath(srcV, destV, srcM);
+ _sub24.setPath(srcV, destV, orientation);
}
void CStarControlSub21::proc10(const FVector &v1, const FVector &v2, const FVector &v3, const FMatrix &m) {
diff --git a/engines/titanic/star_control/star_control_sub21.h b/engines/titanic/star_control/star_control_sub21.h
index bf1b050756..ba16aa7c5d 100644
--- a/engines/titanic/star_control/star_control_sub21.h
+++ b/engines/titanic/star_control/star_control_sub21.h
@@ -35,7 +35,7 @@ public:
CStarControlSub21(const CNavigationInfo *src);
virtual ~CStarControlSub21() {}
- virtual void moveTo(const FVector &srcV, const FVector &destV, const FMatrix &srcM);
+ virtual void moveTo(const FVector &srcV, const FVector &destV, const FMatrix &orientation);
virtual void proc10(const FVector &v1, const FVector &v2, const FVector &v3, const FMatrix &m);
/**
diff --git a/engines/titanic/star_control/star_control_sub23.cpp b/engines/titanic/star_control/star_control_sub23.cpp
index ec3ca65638..b7c803d4b6 100644
--- a/engines/titanic/star_control/star_control_sub23.cpp
+++ b/engines/titanic/star_control/star_control_sub23.cpp
@@ -66,7 +66,7 @@ void CStarControlSub23::proc3(const FMatrix &m1, const FMatrix &m2) {
_field34 = false;
}
-void CStarControlSub23::setPath(const FVector &srcV, const FVector &destV, const FMatrix &srcM) {
+void CStarControlSub23::setPath(const FVector &srcV, const FVector &destV, const FMatrix &orientation) {
_srcPos = srcV;
_destPos = destV;
_posDelta = _destPos - _srcPos;
diff --git a/engines/titanic/star_control/star_control_sub23.h b/engines/titanic/star_control/star_control_sub23.h
index 3d16031cba..e1e1ba08b5 100644
--- a/engines/titanic/star_control/star_control_sub23.h
+++ b/engines/titanic/star_control/star_control_sub23.h
@@ -56,7 +56,7 @@ public:
virtual void proc2(FVector &oldPos, FVector &newPos,
FMatrix &oldOrientation, FMatrix &newOrientation);
virtual void proc3(const FMatrix &m1, const FMatrix &m2);
- virtual void setPath(const FVector &srcV, const FVector &destV, const FMatrix &srcM);
+ virtual void setPath(const FVector &srcV, const FVector &destV, const FMatrix &orientation);
virtual int proc5(CErrorCode &errorCode, FVector &pos, FMatrix &orientation) { return 2; }
virtual void proc6(int val1, int val2, float val);
diff --git a/engines/titanic/star_control/star_control_sub24.cpp b/engines/titanic/star_control/star_control_sub24.cpp
index 6bfaef97ef..48737535c5 100644
--- a/engines/titanic/star_control/star_control_sub24.cpp
+++ b/engines/titanic/star_control/star_control_sub24.cpp
@@ -34,8 +34,8 @@ void CStarControlSub24::proc3(const FMatrix &m1, const FMatrix &m2) {
_active = true;
}
-void CStarControlSub24::setPath(const FVector &srcV, const FVector &destV, const FMatrix &srcM) {
- CStarControlSub23::setPath(srcV, destV, srcM);
+void CStarControlSub24::setPath(const FVector &srcV, const FVector &destV, const FMatrix &orientation) {
+ CStarControlSub23::setPath(srcV, destV, orientation);
if (_distance > 8000.0) {
_active = true;
@@ -43,8 +43,8 @@ void CStarControlSub24::setPath(const FVector &srcV, const FVector &destV, const
proc6(120, 4, _distance - 8000.0);
}
- FVector row3 = srcM._row3;
- double mult = _posDelta._x * row3._x + _posDelta._y * row3._y+ _posDelta._z * row3._z;
+ FVector row3 = orientation._row3;
+ double mult = _posDelta._x * row3._x + _posDelta._y * row3._y + _posDelta._z * row3._z;
_moveDelayCtr = 1.0;
bool flag = false;
@@ -71,7 +71,7 @@ void CStarControlSub24::setPath(const FVector &srcV, const FVector &destV, const
FMatrix m1;
m1.fn1(tempV1);
- _sub25.fn1(srcM, m1);
+ _sub25.fn1(orientation, m1);
_moveDelayCtr = 0.0;
_moveDelayInc = 0.1;
@@ -79,7 +79,7 @@ void CStarControlSub24::setPath(const FVector &srcV, const FVector &destV, const
}
}
-int CStarControlSub24::proc5(CErrorCode &errorCode, FVector &v, FMatrix &m) {
+int CStarControlSub24::proc5(CErrorCode &errorCode, FVector &pos, FMatrix &orientation) {
FVector v1, v2, v3, v4;
const FVector *tv;
@@ -88,7 +88,7 @@ int CStarControlSub24::proc5(CErrorCode &errorCode, FVector &v, FMatrix &m) {
if (_moveDelayCtr < 1.0) {
_moveDelayCtr += _moveDelayInc;
- _sub25.fn2(_moveDelayCtr, m);
+ _sub25.fn2(_moveDelayCtr, orientation);
errorCode.set();
return 1;
}
@@ -98,11 +98,11 @@ int CStarControlSub24::proc5(CErrorCode &errorCode, FVector &v, FMatrix &m) {
return 2;
}
- v2 = m._row3;
- v3 = _destPos - v;
+ v2 = orientation._row3;
+ v3 = _destPos - pos;
v3.normalize();
- double val = m._row3._x * v3._x + m._row3._y * v3._y + m._row3._z * v3._z;
+ double val = orientation._row3._x * v3._x + orientation._row3._y * v3._y + orientation._row3._z * v3._z;
bool flag = false;
if (val > 1.0) {
if (val >= 1.0 - 1.0e-10)
@@ -121,14 +121,14 @@ int CStarControlSub24::proc5(CErrorCode &errorCode, FVector &v, FMatrix &m) {
tv = v2.addAndNormalize(v4, v2, v1);
v1 = *tv;
- m.fn1(v1);
+ orientation.fn1(v1);
v2 = v1;
}
if (_field40 >= 0) {
double powVal = _powers[_field40];
v1 = v2 * powVal;
- v += v1;
+ pos += v1;
--_field40;
errorCode.set();
@@ -138,9 +138,9 @@ int CStarControlSub24::proc5(CErrorCode &errorCode, FVector &v, FMatrix &m) {
if (_field44 > 0) {
v1._z = v2._z * _field38;
v1._x = v2._x * _field38;
- v._x = v1._x + v._x;
- v._y = v2._y * _field38 + v._y;
- v._z = v1._z + v._z;
+ pos._x = v1._x + pos._x;
+ pos._y = v2._y * _field38 + pos._y;
+ pos._z = v1._z + pos._z;
--_field44;
errorCode.set();
@@ -152,9 +152,9 @@ int CStarControlSub24::proc5(CErrorCode &errorCode, FVector &v, FMatrix &m) {
v1._y = v2._y * powVal;
v1._z = v2._z * powVal;
v1._x = v2._x * powVal;
- v._y = v1._y + v._y;
- v._z = v1._z + v._z;
- v._x = v._x + v1._x;
+ pos._y = v1._y + pos._y;
+ pos._z = v1._z + pos._z;
+ pos._x = pos._x + v1._x;
--_field48;
errorCode.set();
diff --git a/engines/titanic/star_control/star_control_sub24.h b/engines/titanic/star_control/star_control_sub24.h
index f3d38ef13b..565f31ebf4 100644
--- a/engines/titanic/star_control/star_control_sub24.h
+++ b/engines/titanic/star_control/star_control_sub24.h
@@ -36,9 +36,9 @@ public:
/**
* Sets the path to animate movement between
*/
- virtual void setPath(const FVector &srcV, const FVector &destV, const FMatrix &srcM);
+ virtual void setPath(const FVector &srcV, const FVector &destV, const FMatrix &orientation);
- virtual int proc5(CErrorCode &errorCode, FVector &v, FMatrix &m);
+ virtual int proc5(CErrorCode &errorCode, FVector &pos, FMatrix &orientation);
};
} // End of namespace Titanic
diff --git a/engines/titanic/star_control/star_control_sub25.cpp b/engines/titanic/star_control/star_control_sub25.cpp
index 3fccbd3591..39588725fa 100644
--- a/engines/titanic/star_control/star_control_sub25.cpp
+++ b/engines/titanic/star_control/star_control_sub25.cpp
@@ -35,17 +35,17 @@ void CStarControlSub25::fn1(const FMatrix &m1, const FMatrix &m2) {
_sub2.fn4(matrix);
}
-void CStarControlSub25::fn2(double val, FMatrix &m) {
+void CStarControlSub25::fn2(double val, FMatrix &orientation) {
if (val <= 0.0) {
- m = _matrix1;
+ orientation = _matrix1;
} else if (val > 1.0) {
- m = _matrix2;
+ orientation = _matrix2;
} else {
CStarControlSub26 sub26 = _sub1.fn5(val, &_sub2);
DMatrix m1;
m1.fn3(&sub26);
- m = m1;
+ orientation = m1;
}
}
diff --git a/engines/titanic/star_control/star_control_sub25.h b/engines/titanic/star_control/star_control_sub25.h
index cb7d61023e..e6a303439f 100644
--- a/engines/titanic/star_control/star_control_sub25.h
+++ b/engines/titanic/star_control/star_control_sub25.h
@@ -36,7 +36,7 @@ public:
CStarControlSub26 _sub2;
public:
void fn1(const FMatrix &m1, const FMatrix &m2);
- void fn2(double val, FMatrix &m);
+ void fn2(double val, FMatrix &orientation);
};
} // End of namespace Titanic