Difference between revisions of "NMLTutorial"
m (Fixed missing code) |
|||
Line 40: | Line 40: | ||
:} |
:} |
||
<font size="3">'''NML laguage file snippet'''</font> |
<font size="3">'''NML laguage file snippet'''</font> |
||
+ | :<nowiki>##</nowiki>grflangid 0x01 |
||
− | :lang: 7F |
||
:STR_GRF_NAME :Swedish Rails {VERSION} |
:STR_GRF_NAME :Swedish Rails {VERSION} |
||
:STR_GRF_DESCRIPTION :Swedish rails are a replacement for the default rails |
:STR_GRF_DESCRIPTION :Swedish rails are a replacement for the default rails |
Revision as of 20:11, 21 June 2011
Introduction
Since june 2010 a new coding language for creating TTDpatch/OpenTTD GRF's exists: Newgrf Meta Language or NML. It differs significantly from the old way of GRF editing and although documentation is available it may still be a challenge for people interested in using NML code.
There will be detailed examples of how coding in NML works on this new TT-wiki. Make sure to check the progress of this NML tutorial regularly.
NML vs. NFO
Background
NML is a high-level NewGRF language compiler which compiles NML and LNG files into newgrf files (and NFO files, if asked to do so). Coding a NewGRF in NML is similar to writing in any other programming language except that there are no real sub-routines; you can use the usual definition and condition statements.
Language support
NML provides easy support for different languages in one GRF. This is achieved by creating language files (LNG). These language files follow the convention used for OpenTTD translation files. When compiling NML files a search for language files will automatically be performed. Even without providing additional translations at least one language file must be specified, called default.lng.
Image format support
One of the conveniences of NML is the possibility to read other image formats, most notably PNG. Remember though that those images still need to supply the proper 8bpp palette and are supported by the python image library.
Example
Does the above sound impressive, maybe even threatening to you? One illustration often says more than a thousand words so let's show the difference with two illustrations:
NFO code snippet
|
NML code snippet
NML laguage file snippet
|