Difference between revisions of "NML:Changes 0.4"
From GRFSpecs
Jump to navigationJump to searchPlanetmaker (talk | contribs) (Changes in NML 0.4.0) |
Planetmaker (talk | contribs) m (style for variables, callbacks and constants) |
||
(One intermediate revision by the same user not shown) | |||
Line 12: | Line 12: | ||
* Statistics on the NewGRF on used IDs for vehicles, houses, etc as well as available switches, parameters etc |
* Statistics on the NewGRF on used IDs for vehicles, houses, etc as well as available switches, parameters etc |
||
+ | == Language additions == |
||
− | * Feature: [NewGRF] create_effect and effect_spawn_model |
||
+ | * Feature: vehicle property <code style="color:darkgreen">effect_spawn_model_and_powered</code> and related callback <code style="color:darkgreen">create_effect</code> |
||
− | * Feature: |
+ | * Feature: <code style="color:darkgreen">EFFECT_SPRITE_NONE</code> constant for <code style="color:darkgreen">create_effect</code> callback |
− | * Feature: |
+ | * Feature: support for <code style="color:darkgreen">OTTD_RECOLOUR</code> action5 sprite(s) |
− | * Feature: |
+ | * Feature: Support for Latin translations |
− | * Feature: |
+ | * Feature: <code style="color:darkgreen">wagon_speed_limits</code> variable to test for enabled wagon speed limits. (issue #6474) |
− | * Feature: [NewGRF] Warn about usage of animation and semi-transparent colours, and add spriteset flags to enable/disable the checks. (issue #1085) |
||
+ | |||
There's numerous other fixes, changes and additions. For a full changelog, see http://bundles.openttdcoop.org/nml/releases/0.4.0/changelog.txt |
There's numerous other fixes, changes and additions. For a full changelog, see http://bundles.openttdcoop.org/nml/releases/0.4.0/changelog.txt |
||
Get the latest release version from the bundles server: http://bundles.openttdcoop.org/nml/releases/LATEST/ |
Get the latest release version from the bundles server: http://bundles.openttdcoop.org/nml/releases/LATEST/ |
||
− | |||
− | Note to package maintainers: |
||
− | |||
− | Dependency change: python 3.2+ |
||
− | Dependency change: preferably use pillow for python3 as imaging library instead of PIL. |
||
− | Build requirement change (optional): c compiler needed to build the optional cython module for grf encoding (nml/_lz77.c). It's an optional speed improvement over the python-only implementation. |
Latest revision as of 13:21, 19 February 2015
Change to python3
With NML 0.4 we change some of its foundations, it now is written in python3 and requires python 3.2 or newer. Requirements are:
- python 3.2 or newer
- python3-pillow (imaging library)
- python3-ply (lexer library)
Other changes
- New warnings about and flags for realsprites: (NO)ALPHA, (NO)WHITE and (NO)ANIM. See explanation in realsprite page.
- Rigerous caching of real sprites. This improves encoding speed a lot on subsequent runs, especially for NewGRFs with many real sprites, more so for 32bpp
- Statistics on the NewGRF on used IDs for vehicles, houses, etc as well as available switches, parameters etc
Language additions
- Feature: vehicle property
effect_spawn_model_and_powered
and related callbackcreate_effect
- Feature:
EFFECT_SPRITE_NONE
constant forcreate_effect
callback - Feature: support for
OTTD_RECOLOUR
action5 sprite(s) - Feature: Support for Latin translations
- Feature:
wagon_speed_limits
variable to test for enabled wagon speed limits. (issue #6474)
There's numerous other fixes, changes and additions. For a full changelog, see http://bundles.openttdcoop.org/nml/releases/0.4.0/changelog.txt
Get the latest release version from the bundles server: http://bundles.openttdcoop.org/nml/releases/LATEST/