Difference between revisions of "Graph"
Line 2: | Line 2: | ||
The '''Graph''' (also known as the '''Chart''') is a grid that appears at the end of every dream in [[LSD: Dream Emulator]], as well as when selected from the main menu. It is used to determine the spawn position for the next dream, with each tile on the map given a location to start the player at. According to the [[LSD Manual Cards]], the Graph is a representation of the player's mental state after the previous dream. | The '''Graph''' (also known as the '''Chart''') is a grid that appears at the end of every dream in [[LSD: Dream Emulator]], as well as when selected from the main menu. It is used to determine the spawn position for the next dream, with each tile on the map given a location to start the player at. According to the [[LSD Manual Cards]], the Graph is a representation of the player's mental state after the previous dream. | ||
+ | |||
+ | ==Graph formula== | ||
+ | The Graph depends on values that have been invisibly assigned to chunks (parts of the field, or level) and [[:Category:Entity|entities]]. All of this was discovered by ''hgs.''. | ||
+ | ===Definitions=== | ||
+ | ====Individual Value==== | ||
+ | Individual Value (''IV'') is a number assigned to individual chunks and characters. For chunks ''IVA'' is used and for characters ''IVB'' is used.<br> | ||
+ | {| class="wikitable" | ||
+ | |+IV Addresses | ||
+ | |- | ||
+ | |Cumulative X-Coordinate IVA | ||
+ | |0x91678 | ||
+ | |4-byte | ||
+ | |- | ||
+ | |Cumulative Y-Coordinate IVA | ||
+ | |0x9167C | ||
+ | |4-byte | ||
+ | |- | ||
+ | |Last-acquired X-Coordinate IVA | ||
+ | |0x91674 | ||
+ | |1-byte | ||
+ | |- | ||
+ | |Last-acquired Y-Coordinate IVA | ||
+ | |0x91675 | ||
+ | |1-byte | ||
+ | |- | ||
+ | |IVA counter | ||
+ | |091680 | ||
+ | |4-byte | ||
+ | |- | ||
+ | |Cumulative X-Coordinate IVB | ||
+ | |0x91688 | ||
+ | |4-byte | ||
+ | |- | ||
+ | |Cumulative Y-Coordinate IVB | ||
+ | |0x9168C | ||
+ | |4-byte | ||
+ | |- | ||
+ | |Last-acquired X-Coordinate IVB | ||
+ | |0x91684 | ||
+ | |4-byte | ||
+ | |- | ||
+ | |Last-acquired Y-Coordinate IVB | ||
+ | |0x91685 | ||
+ | |4-byte | ||
+ | |- | ||
+ | |IVB Counter | ||
+ | |0x91690 | ||
+ | |4-byte | ||
+ | |} | ||
+ | |||
+ | ====Lank Value==== | ||
+ | Lank value (''LV'') is a score between -2 and 2 that larger Individual Values (''IV'') are assigned to.<br> | ||
+ | {| class="wikitable" | ||
+ | |+Individual value to Lank value | ||
+ | |- | ||
+ | |Individual value | ||
+ | |Lank value | ||
+ | |- | ||
+ | |IV≧6 | ||
+ | |2 | ||
+ | |- | ||
+ | |3≦IV≦5 | ||
+ | |1 | ||
+ | |- | ||
+ | |<nowiki>-</nowiki>2≦IV≦2 | ||
+ | |0 | ||
+ | |- | ||
+ | |5≦IV≦-3 | ||
+ | |<nowiki>-</nowiki>1 | ||
+ | |- | ||
+ | |IV≦<nowiki>-</nowiki>6 | ||
+ | |<nowiki>-</nowiki>2 | ||
+ | |} | ||
+ | |||
+ | ===Final equation=== | ||
+ | A = Cumulative total X-Coordinate IVA divided by IVA counter<br> | ||
+ | B = Cumulative total Y-Coordinate IVA divided by IVA counter<br> | ||
+ | C = Lank value of Last-acquired X-Coordinate IVA<br> | ||
+ | D = Lank value of Last-acquired Y-Coordinate IVA<br> | ||
+ | E = Cumulative total X-Coordinate IVB divided by IVB counter<br> | ||
+ | F = Cumulative total Y-Coordinate IVB divided by IVB counter<br> | ||
+ | G = Lank value of Last-acquired X-Coordinate IVB<br> | ||
+ | H = Lank value of Last-acquired Y-Coordinate IVB<br> | ||
+ | |||
+ | [[File:GraphX.png]]<br> | ||
+ | [[File:GraphY.png]] | ||
+ | |||
+ | ===Equation without IVB (used if no characters have been seen)=== | ||
+ | [[File:GraphXalt.png]]<br> | ||
+ | [[File:GraphYalt.png]] | ||
+ | |||
+ | ===Rounding rule=== | ||
+ | ''If the division for A, B, E, or F results in a value of ≦-10, convert to positive 9.''<br> | ||
+ | ''If the division for A, B, E, or F results in a value of ≧10, convert to negative 9.'' | ||
[[Category:LSD: Dream Emulator]] [[Category:LSD Mechanics]] | [[Category:LSD: Dream Emulator]] [[Category:LSD Mechanics]] |
Revision as of 22:57, 19 November 2022
The Graph (also known as the Chart) is a grid that appears at the end of every dream in LSD: Dream Emulator, as well as when selected from the main menu. It is used to determine the spawn position for the next dream, with each tile on the map given a location to start the player at. According to the LSD Manual Cards, the Graph is a representation of the player's mental state after the previous dream.
Graph formula
The Graph depends on values that have been invisibly assigned to chunks (parts of the field, or level) and entities. All of this was discovered by hgs..
Definitions
Individual Value
Individual Value (IV) is a number assigned to individual chunks and characters. For chunks IVA is used and for characters IVB is used.
Cumulative X-Coordinate IVA | 0x91678 | 4-byte |
Cumulative Y-Coordinate IVA | 0x9167C | 4-byte |
Last-acquired X-Coordinate IVA | 0x91674 | 1-byte |
Last-acquired Y-Coordinate IVA | 0x91675 | 1-byte |
IVA counter | 091680 | 4-byte |
Cumulative X-Coordinate IVB | 0x91688 | 4-byte |
Cumulative Y-Coordinate IVB | 0x9168C | 4-byte |
Last-acquired X-Coordinate IVB | 0x91684 | 4-byte |
Last-acquired Y-Coordinate IVB | 0x91685 | 4-byte |
IVB Counter | 0x91690 | 4-byte |
Lank Value
Lank value (LV) is a score between -2 and 2 that larger Individual Values (IV) are assigned to.
Individual value | Lank value |
IV≧6 | 2 |
3≦IV≦5 | 1 |
-2≦IV≦2 | 0 |
5≦IV≦-3 | -1 |
IV≦-6 | -2 |
Final equation
A = Cumulative total X-Coordinate IVA divided by IVA counter
B = Cumulative total Y-Coordinate IVA divided by IVA counter
C = Lank value of Last-acquired X-Coordinate IVA
D = Lank value of Last-acquired Y-Coordinate IVA
E = Cumulative total X-Coordinate IVB divided by IVB counter
F = Cumulative total Y-Coordinate IVB divided by IVB counter
G = Lank value of Last-acquired X-Coordinate IVB
H = Lank value of Last-acquired Y-Coordinate IVB
Equation without IVB (used if no characters have been seen)
Rounding rule
If the division for A, B, E, or F results in a value of ≦-10, convert to positive 9.
If the division for A, B, E, or F results in a value of ≧10, convert to negative 9.