summaryrefslogtreecommitdiff
path: root/engine/overworld
AgeCommit message (Collapse)Author
2020-02-05Merge pull request #650 from pret/audio-macrosRangi
Update audio macros and arguments
2020-02-04Use CMDQUEUE constantsRangi
2020-01-06Merge branch 'master' into audio-macrosdannye
2020-01-04Merge pull request #660 from mid-kid/masterRangi
Make the map setup commands match the actual function names better
2019-12-03Update some labelsRangi
2019-11-18Make the map setup commands match the actual function names bettermid-kid
These functions used as map setup commands are used in other places, too, so I can't prefix them under the same. The names should match except I won't repeat "map" in a map setup command name.
2019-11-03Bit 6 of PrintNum left-aligns numbersRangi
2019-11-03Suggested formatting changesRangi
2019-11-03Identify PLAYERMOVEMENT_* constantsRangi
2019-11-03Rename buttonsound to promptbuttonRangi
2019-11-03Rename OBJECT_LENGTH to MAPOBJECT_LENGTH and OBJECT_STRUCT_LENGTH to ↵Rangi
OBJECT_LENGTH
2019-10-21Fix some mobile script and map sign thingsmid-kid
2019-10-21Misc fixesmid-kid
2019-10-20#641 fixes and additions. (#646)mid-kid
Name a lot of text labels according to our conventions
2019-09-02Update audio macros and argumentsdannye
and update related labels/constants/comments this fixes a lot of mistakes and maximizes compatibility with red
2019-06-09Create constants for ScrollingMenu item formatsmid-kid
...I should've done this quite a while ago.
2019-06-09Fix overworld scrolling function namesmid-kid
2019-05-25Get rid of _CRYSTALmid-kid
Having this here is completely redundant and useless, and doesn't even work since it should use `if DEF(_CRYSTAL)` instead.
2019-04-23More fixes for fixesRangi
2019-04-19Identify some more WRAM labelsRangi
2019-04-13Merge pull request #622 from mid-kid/masterRangi
TextBox -> Textbox
2019-04-13Merge pull request #614 from Fontbane/textRangi
common_1 text documentation
2019-04-09TextBox -> Textboxmid-kid
Homogenizing names.
2019-04-08Identify and eliminate wEngineBuffer1-5Rangi
2019-03-16common_1 text documentationFontbane
Should be almost everything besides some of the mobile stuff and some debug text. Removed VS stuff oops
2019-03-10Rename some call/jump script commands to avoid confusion with jr/jp asm ↵Rangi
instructions Fixes #580
2019-03-10Rename more script commands for consistency and predictabilityRangi
Fixes #540
2019-03-03Define constants for map event sizesRangi
2019-03-03Identify more collision-related constants and dataRangi
2019-02-16passtoengine -> autoinputRangi
2019-02-16Eliminate some $xxxx valuesRangi
2019-02-06$8 = HIGH(vTiles1 - vTiles0)Rangi
2019-01-30wc7e8 -> wUnusedC7E8 (similar to wUnusedD102)Rangi
2019-01-24Use and define more WRAM constantsRangi
2019-01-24Use more constantsRangi
2019-01-12Say "BANK(Foo) ; aka BANK(Bar)" to clarify that Foo and Bar share a bankRangi
2019-01-07Document bugfix: ScriptCall can overflow wScriptStack and crashRangi
2018-12-09Formatting and commentsRangi
2018-11-18Resolve issue #575: Rename text commandsRangi
2018-11-11Merge pull request #573 from mid-kid/masterRangi
text_jump → text_far
2018-11-10Finish new connection macromid-kid
Tried simplifying things a bit, although not nearly as much as I wanted. Ideally, we'd either have one of two situations: - A single set of calculations based on values depending on the direction of the connection - A bunch of "generic" calculations done before applying simple modifiers to them in the final `if` block Right now it's an icky mix of both and I'm not really sure what to make of it.
2018-11-05text_jump → text_farmid-kid
The previous name for this was rather misleading. It isn't an actual jump like you'd expect the `jp` instruction to behave as. Instead, it behaves more like a `farcall`. This also makes it consistent with its current command ID name of `TX_FAR`.
2018-10-11Rename CheckTrainerBattlemid-kid
Renamed to be more in line with our current coding standards. Hopefully this is slightly more readable.
2018-09-09Curr -> CurRangi
2018-08-25Use labels instead of constants for HRAMRangi
Use explicit ldh instruction to access HRAM locations, don't rely on optimizing ld
2018-08-07wWeeklyFlags -> wDailyFlags2mid-kid
These are by far not always checked each week, and as such shouldn't be called that. Since they're almost always used through the `bit` instruction, it's very inconvenient to just make wDailyFlags a `dw` instead.
2018-07-29Make reviewed fixes; standardize on " + "Rangi
2018-07-29; entries correspond to PLAYEREVENT_* constantsRangi
2018-07-29Add meaningful aliases for wd265Rangi
Introduce MONICON_* constants Introduce BATTLEPLAYERACTION_* constants
2018-07-18Make proper cmdqueue constantsmid-kid