The Great Plateau barrier/zh: Difference between revisions

From ZeldaMods (Breath of the Wild)
Jump to navigation Jump to search
(Created page with "這個霧的原理跟遊戲裡其他的霧一樣,都是儲存在 map unit 裡的同一種物件(碰到就會觸發事情的物件)。如果 IsGet_PlayerStole2 是 fa...")
(Created page with "=== 模組裡的機關 ===")
Line 12: Line 12:
這個霧的原理跟遊戲裡其他的霧一樣,都是儲存在 [[map unit]] 裡的同一種物件(碰到就會觸發事情的物件)。如果 IsGet_PlayerStole2 是 false,那遊戲就會生成霧,否則不生成。  
這個霧的原理跟遊戲裡其他的霧一樣,都是儲存在 [[map unit]] 裡的同一種物件(碰到就會觸發事情的物件)。如果 IsGet_PlayerStole2 是 false,那遊戲就會生成霧,否則不生成。  


=== Actor code ===
=== 模組裡的機關  ===


Even if the fog is removed or if the player manages to avoid the fog (by stasis launching for example), Link will still void out when he gets too far away from the Plateau.
Even if the fog is removed or if the player manages to avoid the fog (by stasis launching for example), Link will still void out when he gets too far away from the Plateau.

Revision as of 20:05, 12 May 2020

Other languages:

The Great Plateau barrier 台地结界是游戏里阻止林克在拿到滑翔伞前就离开初始台地的机制。

实作

台地结界一共有两层:第一层是围绕台地的雾,林克只要碰到雾就会被抓回来。第二层是林克的角色模组里埋了一个检查林克位置的机关,只要检查失败就抓回来。

林克拿到滑翔伞后,这两层结界会同时消失。这是因为 IsGet_PlayerStole2 这个 flag 被设成 true 了

这个雾的原理跟游戏里其他的雾一样,都是储存在 map unit 里的同一种物件(碰到就会触发事情的物件)。如果 IsGet_PlayerStole2 是 false,那游戏就会生成雾,否则不生成。

模组里的机关

Even if the fog is removed or if the player manages to avoid the fog (by stasis launching for example), Link will still void out when he gets too far away from the Plateau.

It turns out that IsGet_PlayerStole2 is also checked by the executable. More precisely, its value is queried by 5 functions in the entire program. One of them is the AIDef:AI/PlayerNormal code which is responsible for handling events for the GameROMPlayer (Link) actor.

In that large AI function, the following piece of code can be seen:

if ( !sForceEnableGlidingAndSurfingAndGiveRupees && !sIsDungeon )
{
  if ( !getFlag_IsGet_PlayerStole2(false) &&
       (x < -1600.0 || x > -350.0 || z < 1400.0 || z > 2400.0) )
  {
    player->respawn_pos.x = -1021.7286376953125;
    player->respawn_pos.y = 253.31527709960938;
    player->respawn_pos.z = 1792.6009521484375;
    AI_AIBase::changeState(this, "奈落開始待ち", 0);
    return;
  }
  ...
}

A few notes:

  • 奈落开始待ち means (roughly) 'wait for abyss start'. It is the name of the AIDef:Action/PlayerHellStartWait action for the Player_Link aiprog.
  • sIsDungeon is set when GameScene generates a stage. It is false if and only if:
    • the map type isn't any of the following type: MarioClubTestDungeon, CDungeon, MainFieldDungeon
    • and (the map type isn't GameTestDungeon) or the map name is ActorViewer or in debug mode[check].
  • Essentially, what this piece of code does is force Link to void out if (a) debug flags aren't set, (b) he doesn't have the paraglider, (c) Link is not within the bounds of the following rectangle:
The Great Plateau barrier.png

On the MainField (Hyrule) and AocField (Trial of the Sword) maps, Link is effectively surrounded by an infinitely high box that he is not allowed to leave until he has the paraglider.

It is a simple, hardcoded, coordinate-based check, and it is embedded in the core Player actor code, so glitching past it is impossible barring major bugs that would likely leave the game broken and unplayable.

Given that events can be delayed and that the actual voidout is done by a demo/cutscene, it is possible to get Link stuck in the PlayerHellStartWait state indefinitely and technically leave the authorized area without being voided out immediately. However, doing any kind of useful action (walking, gliding, riding a horse, etc.) is still impossible, as the paraglider check is done before handling any other regular state. As soon as Link leaves the waiting state, he will be voided out.