summaryrefslogtreecommitdiff
path: root/macros
AgeCommit message (Collapse)Author
2020-07-13Define map setup commands as macros like other script commandsRangi
2020-07-10Use const_skip and const_next macros for brevityRangi
2020-07-08Eliminate enum: use const instead, with case-by-case parallel const ↵Rangi
implementations
2020-07-06text_linkpromptbutton -> text_waitbuttonRangi
Removes support for text_waitbutton as a legacy alias for text_promptbutton.
2020-07-02Use STRCMP, not ==, to compare multi-character stringsRangi
2020-07-01Identify more labels, and use the jumptable macro when possibleRangi
2020-06-29Identify more unnamed labelsRangi
2020-06-21Remove some more raw addressesRangi
2020-06-19sound_duty became duty_cycle_patternRangi
2020-06-16Harmonize home/ with pokegoldRangi
2020-06-16Harmonize some more symbols with pokegoldRangi
2020-06-10predef_id -> lda_predef, for consistency with lda_coord and map_idRangi
2020-06-10Resolve #723: treat std scripts like specials and predefsRangi
2020-06-07wPhoneList, like wItems et al, has a terminating 0 (see ↵Rangi
PokegearPhone_DeletePhoneNumber); also fix a comment
2020-05-07Clean up some percentage valuesRangi
2020-04-23Miscellaneous updates and correctionsRangi
2020-04-04`dsprite y, ypx, x, xpx, off, attr` -> `dbsprite x, y, xpx, ypx, off, attr`Rangi
2020-04-04Move, comment, and simplify some macro definitionsRangi
2020-04-04Upgrade to rgbds 0.4.0Rangi
- fail for rgbds < 0.4.0 - `rst <Label>` - `ds <count>, <byte>` - `shift <N>` - ASCII "\r" - Sorted .sym file
2020-03-21rgbds supports 'X - 1' instead of 'X + -1'Rangi
2020-03-21Miscellaneous fixes from #694Rangi
2020-02-13Standardize on lowercase Tilemap and Attrmapmid-kid
We used to have a mixture of TileMap and and Tilemap, as well as the similar AttrMap. Standardize on one.
2020-01-06Merge branch 'master' into audio-macrosdannye
2020-01-05Update docs/music_commands.mddannye
and remove the pokered compatibility macros
2019-11-03Rename buttonsound to promptbuttonRangi
2019-09-08stereo_panning: force any non-zero arg to 1dannye
2019-09-04Add legacy audio macrosdannye
2019-09-03Use TRUE/FALSE constants for stereo_panningdannye
and use dn instead of db for volume envelope and pitch sweep
2019-09-03Rename dnote to drum_note and dspeed to drum_speeddannye
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-05-25Define appropriate constants as EQUmid-kid
These constants are defined only once and shouldn't be redefined anyway.
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-21"object_const_def" instead of "const_def 2"Rangi
2019-04-19Identify some more WRAM labelsRangi
2019-04-09TextBox -> Textboxmid-kid
Homogenizing names.
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-02-17Don't use legacy macrosRangi
2019-02-16dba exists, use itRangi
2019-02-16passtoengine -> autoinputRangi
2019-02-16Fix issues in reviewmid-kid
2019-02-16Document wBattleAnimFlagsmid-kid
`anim_clearsprites` was misnamed, so I renamed it to `anim_keepsprites`, and documented it in docs/battle_anim_commands.md
2019-02-15dorepeat -> dowait for oam animationsmid-kid
Having the pic animation macros be the same as the oam animation macros isn't really turning out so well... I wonder if we should split them up eventually.
2018-12-09Format music macros like movement macrosRangi
2018-12-09Merge pull request #578 from mid-kid/masterRangi
Fixes in the animation subsystem.
2018-11-25Rename "feet and head follow" commandsmid-kid
The lot of these were rather misnamed, since they're used to replace part of the player or enemy with objects for several background effects. https://github.com/pret/pokecrystal/pull/578#issuecomment-440996244
2018-11-21Use ANIM_GFX constants for battle animationsmid-kid
2018-11-21Define first_music_cmdmid-kid
This replaces the uses of $d0 in the audio engine with proper constants.
2018-11-20Cosmetic fixesmid-kid