Help:Text modding: Difference between revisions
m (→Choices: Tweaks to variable_kind control and choice control's unknown value.) |
(Choice node fix, misc clarifications) |
||
Line 98: | Line 98: | ||
kind: pause | kind: pause | ||
frames: 30 | frames: 30 | ||
</syntaxhighlight> | </syntaxhighlight>This assumes a 30FPS frame rate. However, frame rate mods should correctly convert your actual frame rate to 30, so a <code>frames</code> value of 30 should always correspond to 1 second, unless your game is lagging. | ||
A common use of pauses is to break up sentences auditorily, like one would when speaking in real life. <code>short</code> is typically used after regular sentences while <code>long</code> and <code>longer</code> are used after exclamations, questions, and ponderings. The specific duration depends on the desired emphasis for the preceding sentence. | A common use of pauses is to break up sentences auditorily, like one would when speaking in real life. <code>short</code> is typically used after regular sentences while <code>long</code> and <code>longer</code> are used after exclamations, questions, and ponderings. The specific duration depends on the desired emphasis for the preceding sentence. | ||
Line 137: | Line 137: | ||
kind: auto_advance | kind: auto_advance | ||
frames: 101 | frames: 101 | ||
</syntaxhighlight>The value of <code>frames</code> is the number of frames to wait before auto-advancing. | </syntaxhighlight>The value of <code>frames</code> is the number of frames to wait before auto-advancing. This assumes a 30FPS frame rate. However, frame rate mods should correctly convert your actual frame rate to 30, so a <code>frames</code> value of 30 should always correspond to 1 second, unless your game is lagging. | ||
====Choices==== | ====Choices==== | ||
Line 155: | Line 155: | ||
kind: single_choice | kind: single_choice | ||
label: 9 | label: 9 | ||
</syntaxhighlight> | </syntaxhighlight>Nintendo's internal MSBT library converts the u16 labels to %04d-formatted strings for accessing the choice text. (e.g. label 9 corresponds to the key <code>"0009"</code>) | ||
The value of <code>selected_index</code> is | The MSBT library used by WildBits is out of date, and has slight errors. | ||
The value of <code>selected_index</code> is, as far as is currently known, an error. It does not correspond to any valid part of the Choice control's binary layout. It is believed to have been a misunderstanding made by the original reverse engineer, in that all Choice controls come at the end of a dialogue line, and therefore end with <code>0x0000</code>, a "null character" which tells the game that the string has ended. It could also be a Nintendo internal library inconsistency between BotW and other games. | |||
The value of <code>cancel_index</code> is the choice that is selected when the player presses the B button. It refers to the same zero-indexed list as <code>selected_index</code>. From a game design standpoint, this should usually refer to the last choice. | The value of <code>cancel_index</code> is the choice that is selected when the player presses the B button. It refers to the same zero-indexed list as <code>selected_index</code>. From a game design standpoint, this should usually refer to the last choice. | ||
The <code>unknown</code> code field's purpose is the total byte size of the parameters. There is one parameter per choice plus the <code>cancel_index</code>, and each of those is 2 bytes long, so it should always be 6 for a two-choice, 8 for a three-choice, and 10 for a four-choice control. A single_choice control does not contain a <code>cancel_index</code>, however, it does always contain a <code>0x01CD</code> at the end, so its parameter size is 4. | |||
To implement branching-path dialogue with this control node, the associated event flow must have the switch-type event <code>EventSystemActor::GeneralChoiceX</code>, where <code>X</code> is the number of choices available. | To implement branching-path dialogue with this control node, the associated event flow must have the switch-type event <code>EventSystemActor::GeneralChoiceX</code>, where <code>X</code> is the number of choices available. | ||
Line 227: | Line 229: | ||
|Yes | |Yes | ||
|} | |} | ||
There is also a <code>sound2</code> control node. It is unknown how this differs from the <code>sound</code> control node. | There is also a <code>sound2</code> control node. It is unknown how this differs from the <code>sound</code> control node, aside from it only having 1 parameter and being terminated with a <code>0xCD</code> byte. | ||
==Saving the files== | ==Saving the files== |
Revision as of 11:16, 2 August 2022
Breath of the Wild uses a very flexible system for implementing the large majority of text features in the game, including but not limited to dialogue, signboards, quest logs, item descriptions, and menus. This guide will explain how to utilize this system.
Prerequisites
There are two recommended toolsets for modding text:
- Wild Bits
- Hyrule Builder and a text editor that supports YAML
Accessing the files
All text in the game is located inside the content/Pack/Bootup_xxXX.pack
files in what are called message archives. The xxXX
is the locale of the message contents. If you want your mod to support multiple locales, you'll need to make your text changes in every locale file you want to support.
Copy the message pack(s) you want to edit into your mod folder, then either open them with Wild Bits or unbuild your mod folder with Hyrule Builder. (If you use the latter, the new location of the message pack(s) will be content/Message
.)
Read about message archives for more information on what the subfolders are for.
Editing the files
If you're modding text for an NPC, signboard, item, etc. that already exists, simply find and open the corresponding file. If you're creating a brand-new NPC, signboard, or quest, you'll need to create a new file inside of the corresponding folder. The easiest way to do this is by copying an existing message file in the same folder and deleting the entirety of the entries
section.
Message files use a key-value system, which marks different strings of text with a unique identifier. When creating new keys, the identifiers can be whatever you want, but ideally, you should make them easy to remember and be consistent. (e.g. Talk01, Talk02)
The attributes
section, while not fully understood, seems to label the actor that is speaking the contents
section. It is unknown if this has any effect in-game.[1]
In the game, the nodes within the contents
section are played back top-to-bottom.
Here's an example of what a single key looks like in MSYT:
talk65:
attributes: Npc_AncientDoctor
contents:
- control:
kind: sound
unknown:
- 7
- 0
- text: "This is the "
- control:
kind: set_colour
colour: blue
- text: Hateno Ancient Tech Lab
- control:
kind: reset_colour
- text: "!"
- control:
kind: pause
length: long
- text: "\nClick, snap!"
Text nodes
A text node is a basic container for text.
Breath of the Wild does not have built-in text wrapping, so line breaks must be specified in the message file itself. You can use Bubble Wrap to help visualize and automatically format your text. To fit aesthetically with the game, all dialogue should be wrapped after a certain width, which the tool also does for you. However, text is often wrapped earlier than this to achieve better visual balance, i.e. to prevent there being only one or two words on a single line, or to break up the text in a way that makes sense, i.e. to emphasize an object, location, action, or task.
The game allows three lines of text per bubble for dialogue and signboards. If there are more than three lines, only the first three lines will be shown initially; the game will then prompt the player to advance the dialogue, which will repeat the process with the remaining lines. To display only one or two lines in a bubble but still have text in following bubbles, use multiple consecutive line breaks until the number of lines exceeds three.
In YAML, line breaks and double-quotes have a special structural meaning, so they cannot be used directly in your text. Instead, \n
(for line breaks) and \"
(for double-quotes) must be used. This is called "escaping" the characters.
When putting spaces or line breaks at the beginning or end of a text node, the entire value of the node must be surrounded by unescaped double-quotes.[2]
Control nodes
Color
A color-type control node sets the color that the text is displayed in. (Note the British-English spelling of the value of kind
-- "colour".)
- control:
kind: set_colour
colour: blue
The value of colour
is the name of the color to set: blue
, red
, grey
, light_green1
, light_green4
, light_grey
, or orange
.[3]
The color setting will remain in effect until it is changed again or when the end of the contents
section is reached. To set the color back to white, use the reset_colour
control node:
- control:
kind: reset_colour
From a game design standpoint, blue
is used for the most important bits of information in a piece of dialogue. red
is used when this pertains to the progression of a quest or when an irreversible action is about to occur, such as a purchase or exchange. grey
is used when the NPC talking is supposed to sound quiet, often used in combination with a text size of 80
. In the unmodded game, the other colors are only used in the menus.
Font
A font-type control node sets the font that the text is displayed in.
- control:
kind: font
font_kind: hylian
The value of font_kind
is the name of the font to set: normal
or hylian
.[4]
The font setting will remain in effect until it is changed again or when the end of the contents
section is reached.
Icons
An icon-type control node displays the specified icon inline with the text.
- control:
kind: icon
icon: y
The value of icon
is the name of the icon to show. Options include arrows (right_arrow
, left_arrow
, up_arrow
) and controller-related images (gamepad
, a
, b
, x
, y
, l
, r
, zl
, zr
, l_stick_press
, l_stick_forward
, l_stick_back
, r_stick_press
, d_pad_down
, d_pad_left
, d_pad_up
, d_pad_right
, plus
, minus
).[5]
Pausing
A pause-type control node "pauses" for a period of time before playing back the subsequent nodes.
- control:
kind: pause
length: long
The value of length
is how long to pause for: short
, long
, or longer
.[6]
The duration of a pause can also be specified in frames by using the frames
parameter:[7]
- control:
kind: pause
frames: 30
This assumes a 30FPS frame rate. However, frame rate mods should correctly convert your actual frame rate to 30, so a frames
value of 30 should always correspond to 1 second, unless your game is lagging.
A common use of pauses is to break up sentences auditorily, like one would when speaking in real life. short
is typically used after regular sentences while long
and longer
are used after exclamations, questions, and ponderings. The specific duration depends on the desired emphasis for the preceding sentence.
Size
A size-type control node sets the size that the text is displayed in:
- control:
kind: text_size
percent: 100
The value of percent
is a percentage value relative to the default text size.
In the unmodded game, 80
is used for any small text, and 125
is used for any large text. Other values have not been tested for efficacy.
Variables
A variable-type control node inserts the value of the specified game variable into the text.[8] Examples include displaying the score of a minigame, showing the cost of the selected item, etc.
- control:
kind: variable
variable_kind: 19
name: Gerudo_CarryIce_s
The purpose of variable_kind
refers to the kind of Game Flag that is referenced (this includes strings, int and float values).
The value of name
is the name of the variable to insert.
Refer to existing in-game implementations of variables to determine how to use them in your dialogue. Usage of variables requires the associated event to be configured to set them.
Dialogue-only control nodes
Animations
An animation-type control node plays an animation on the currently speaking NPC.[9]
- control:
kind: animation
name: Think_00
The value of name
refers to the name of an animation defined in the speaking NPC's .bfres
file in content/Model
. You can use Switch Toolbox to browse the available animations.
Auto-advance
An auto-advance-type control node "automatically advances" to the next dialogue bubble (without player input) after a given period of time.[10]
- control:
kind: auto_advance
frames: 101
The value of frames
is the number of frames to wait before auto-advancing. This assumes a 30FPS frame rate. However, frame rate mods should correctly convert your actual frame rate to 30, so a frames
value of 30 should always correspond to 1 second, unless your game is lagging.
Choices
A choice-type control node presents one or more selectable dialogue choices for Link.[11]
- control:
kind: choice
choice_labels:
- 9
- 10
- 11
- 12
selected_index: 0
cancel_index: 3
unknown: 8
If you only want to present one dialogue choice (to make NPC monologues more interactive) use the single_choice
control node:[12]
- control:
kind: single_choice
label: 9
Nintendo's internal MSBT library converts the u16 labels to %04d-formatted strings for accessing the choice text. (e.g. label 9 corresponds to the key "0009"
)
The MSBT library used by WildBits is out of date, and has slight errors.
The value of selected_index
is, as far as is currently known, an error. It does not correspond to any valid part of the Choice control's binary layout. It is believed to have been a misunderstanding made by the original reverse engineer, in that all Choice controls come at the end of a dialogue line, and therefore end with 0x0000
, a "null character" which tells the game that the string has ended. It could also be a Nintendo internal library inconsistency between BotW and other games.
The value of cancel_index
is the choice that is selected when the player presses the B button. It refers to the same zero-indexed list as selected_index
. From a game design standpoint, this should usually refer to the last choice.
The unknown
code field's purpose is the total byte size of the parameters. There is one parameter per choice plus the cancel_index
, and each of those is 2 bytes long, so it should always be 6 for a two-choice, 8 for a three-choice, and 10 for a four-choice control. A single_choice control does not contain a cancel_index
, however, it does always contain a 0x01CD
at the end, so its parameter size is 4.
To implement branching-path dialogue with this control node, the associated event flow must have the switch-type event EventSystemActor::GeneralChoiceX
, where X
is the number of choices available.
Sounds
A sound-type control node plays a sound effect from the currently speaking NPC.
- control:
kind: sound
unknown:
- 7
- 0
The numbers under unknown
are not fully understood. However, it is known that with the bottom number set to 0, certain values of the top number have the following behaviors:
Facial Emotion | Sound | |
---|---|---|
0 | Normal | No |
1 | Pleasure | No |
2 | Anger | No |
3 | Sorrow | No |
4 | Shock | No |
5 | Thinking | No |
6 | Normal | Yes |
7 | Pleasure | Yes |
8 | Anger | Yes |
9 | Sorrow | Yes |
10 | Shock | Yes |
11 | Thinking | Yes |
There is also a sound2
control node. It is unknown how this differs from the sound
control node, aside from it only having 1 parameter and being terminated with a 0xCD
byte.
Saving the files
If you're using Wild Bits, make sure that you save every file you edit. However, this only "saves" to a temporary unsaved version of the message pack. When you're done, remember to save the entire pack in the SARC tab. Remember to update the mod in your mod-management software.
If you're using Hyrule Builder, simply ensure that your files are saved from the text editor. You'll need to create a new build of your mod folder every time you want to test changes to your mod. Remember to update the mod in your mod-management software.
If you encounter issues, make sure that the indentation in your message files matches the examples in this guide. The YAML format is strict with this because the indentations have special structural meaning.
References
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L120
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L98
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L62
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L43
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L47
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L54
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L58
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L89
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L24
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L28
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L32
- ↑ https://github.com/polarbunny/msyt-tools/blob/master/docs/notes.txt#L69