mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-23 00:01:15 +00:00
Rename
This commit is contained in:
parent
7b33724379
commit
2a55bc9e39
@ -106,8 +106,8 @@ class Act3 : public LegoWorld {
|
|||||||
// SYNTHETIC: LEGO1 0x10072630
|
// SYNTHETIC: LEGO1 0x10072630
|
||||||
// Act3::`scalar deleting destructor'
|
// Act3::`scalar deleting destructor'
|
||||||
|
|
||||||
MxResult LaunchPizza(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up);
|
MxResult ShootPizza(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up);
|
||||||
MxResult LaunchDonut(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up);
|
MxResult ShootDonut(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up);
|
||||||
void FUN_10073400();
|
void FUN_10073400();
|
||||||
void FUN_10073430();
|
void FUN_10073430();
|
||||||
|
|
||||||
|
|||||||
@ -249,13 +249,13 @@ MxLong Helicopter::HandleControl(LegoControlManagerNotificationParam& p_param)
|
|||||||
up.EqualsCross(&va4, &v90);
|
up.EqualsCross(&va4, &v90);
|
||||||
|
|
||||||
if (isPizza) {
|
if (isPizza) {
|
||||||
if (((Act3*) m_world)->LaunchPizza(m_pathController, location, direction, up) != SUCCESS) {
|
if (((Act3*) m_world)->ShootPizza(m_pathController, location, direction, up) != SUCCESS) {
|
||||||
MxTrace("Shoot pizza failed\n");
|
MxTrace("Shoot pizza failed\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (((Act3*) m_world)->LaunchDonut(m_pathController, location, direction, up) != SUCCESS) {
|
if (((Act3*) m_world)->ShootDonut(m_pathController, location, direction, up) != SUCCESS) {
|
||||||
MxTrace("Shoot donut failed\n");
|
MxTrace("Shoot donut failed\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -126,7 +126,7 @@ Act3::~Act3()
|
|||||||
|
|
||||||
// FUNCTION: LEGO1 0x100727e0
|
// FUNCTION: LEGO1 0x100727e0
|
||||||
// FUNCTION: BETA10 0x100158e2
|
// FUNCTION: BETA10 0x100158e2
|
||||||
MxResult Act3::LaunchPizza(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up)
|
MxResult Act3::ShootPizza(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up)
|
||||||
{
|
{
|
||||||
MxS32 nextPizza;
|
MxS32 nextPizza;
|
||||||
for (nextPizza = 0; nextPizza < (MxS32) sizeOfArray(m_pizzas); nextPizza++) {
|
for (nextPizza = 0; nextPizza < (MxS32) sizeOfArray(m_pizzas); nextPizza++) {
|
||||||
@ -182,7 +182,7 @@ MxResult Act3::LaunchPizza(LegoPathController* p_controller, Vector3& p_location
|
|||||||
|
|
||||||
// FUNCTION: LEGO1 0x10072980
|
// FUNCTION: LEGO1 0x10072980
|
||||||
// FUNCTION: BETA10 0x10015c69
|
// FUNCTION: BETA10 0x10015c69
|
||||||
MxResult Act3::LaunchDonut(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up)
|
MxResult Act3::ShootDonut(LegoPathController* p_controller, Vector3& p_location, Vector3& p_direction, Vector3& p_up)
|
||||||
{
|
{
|
||||||
MxS32 nextDonut;
|
MxS32 nextDonut;
|
||||||
for (nextDonut = 0; nextDonut < (MxS32) sizeOfArray(m_donuts); nextDonut++) {
|
for (nextDonut = 0; nextDonut < (MxS32) sizeOfArray(m_donuts); nextDonut++) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user