Skip to content

Commit

Permalink
BLADERUNNER: Fixed Hysteria Iall door & rotating floor
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkohaut committed Mar 8, 2018
1 parent 9e6883b commit ae95bcf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion engines/bladerunner/script/ai/mccoy.cpp
Expand Up @@ -588,7 +588,7 @@ bool AIScriptMcCoy::UpdateAnimation(int *animation, int *frame) {
if (_animationFrame < Slice_Animation_Query_Number_Of_Frames(41) - 1) {
_animationFrame++;
}
return true;
break;
case 59:
*animation = 48;
_animationFrame++;
Expand Down
17 changes: 9 additions & 8 deletions engines/bladerunner/script/scene/nr05.cpp
Expand Up @@ -148,16 +148,16 @@ void SceneScriptNR05::SceneFrameAdvanced(int frame) {
if (frame == 86) {
Sound_Play(353, 62, 70, 70, 50);
}
sub_402A48(48);
sub_402A48(0);
rotateActorOnGround(kActorHysteriaPatron2);
rotateActorOnGround(kActorMcCoy);
if (Actor_Query_Goal_Number(kActorEarlyQ) == 224) {
Actor_Set_Goal_Number(kActorEarlyQ, 225);
if (Player_Query_Current_Scene() == 58) {
Scene_Exit_Add_2D_Exit(1, 0, 0, 30, 479, 3);
}
}
if (frame > 77 && frame <= 134) {
sub_401F74(frame - 13);
rotateActorOnTable(frame - 13);
if (frame == 134 && !Game_Flag_Query(537)) {
Actor_Set_Goal_Number(kActorMcCoy, 200);
}
Expand All @@ -167,7 +167,6 @@ void SceneScriptNR05::SceneFrameAdvanced(int frame) {
//return false;
return;
}

}

void SceneScriptNR05::ActorChangedGoal(int actorId, int newGoal, int oldGoal, bool currentSet) {
Expand All @@ -193,7 +192,7 @@ void SceneScriptNR05::PlayerWalkedOut() {
void SceneScriptNR05::DialogueQueueFlushed(int a1) {
}

void SceneScriptNR05::sub_401F74(int frame) {
void SceneScriptNR05::rotateActorOnTable(int frame) {
float angle = cos((frame - 65) * (M_PI / 57.0f)) * M_PI_2;
float invertedAngle = M_PI - angle;
if (!Game_Flag_Query(537)) {
Expand Down Expand Up @@ -329,14 +328,16 @@ void SceneScriptNR05::sub_4022DC() {
}
}

void SceneScriptNR05::sub_402A48(int actorId) {
void SceneScriptNR05::rotateActorOnGround(int actorId) {
int animationMode = Actor_Query_Animation_Mode(actorId);
if (animationMode == 1 || animationMode == 2 || animationMode == 7 || animationMode == 8) {
if (animationMode == kAnimationModeWalk || animationMode == kAnimationModeRun || animationMode == kAnimationModeCombatWalk || animationMode == kAnimationModeCombatRun) {
return;
}
float x, y, z;
Actor_Query_XYZ(actorId, &x, &y, &z);
if ((x - -542.0f) * (x - -542.0f) + (z - -195.0f) * (z - -195.0f) < 8464.0f) {
x -= -542.0f;
z -= -195.0f;
if (x * x + z * z < 92.0f * 92.0f) {
float s = sin(M_PI / 128.0f);
float c = cos(M_PI / 128.0f);
float newX = x * c - z * s + -542.0f;
Expand Down
4 changes: 2 additions & 2 deletions engines/bladerunner/script/scene_script.h
Expand Up @@ -313,10 +313,10 @@ DECLARE_SCRIPT(NR04)
END_SCRIPT

DECLARE_SCRIPT(NR05)
void sub_401F74(int frame);
void rotateActorOnTable(int frame);
void sub_4020B4();
void sub_4022DC();
void sub_402A48(int actorId);
void rotateActorOnGround(int actorId);
void sub_402B9C();
END_SCRIPT

Expand Down

0 comments on commit ae95bcf

Please sign in to comment.