Serc – User
m (→define) |
mNo edit summary |
||
Line 4: | Line 4: | ||
==Syntax== | ==Syntax== | ||
Classes could be compared to folders. There is a folder for every object in ArmA. In every folder there are files which we will call attributes. A class definition with an attribute will look like this: | |||
<code>class name { | |||
attribute = value; | |||
}; | |||
</code> | |||
There could also be an array of attributes. | |||
<code>class name { | <code>class name { | ||
attribute = value; | |||
attributeArray[] = {value1,value2,value3}; | |||
};</code> | |||
There can't be two same classnames in a config. For example | |||
<code>class test { | |||
attribute = value; | |||
}; | |||
class test { | |||
attribute = value; | attribute = value; | ||
}; | }; | ||
</code> | </code> | ||
will NOT work! | |||
<code> | Same goes for two definitions of an attribute in one class. | ||
class | <code>class test { | ||
attribute = value; | |||
attribute = value; | attribute = value; | ||
};</code> | };</code> | ||
Will not work! | |||
==Inheritance== | ==Inheritance== | ||
With inheritance you can create a dependency of a object to a parent object. This saves you a lot of typing and makes it easier to maintain. A parent class is usually a generalisation. A Stryker for example is an APC and an APC is a ground vehicle. | |||
We can inherit from another class by adding ''': className''' to our class. But the class needs to be present in the config. Like here: | |||
<code>class parentClass { | |||
attribute = value; | |||
}; | |||
class childClass : parentClass { | |||
anotherAttribue = anotherValue; | |||
};</code> | |||
<code>class parentClass; | |||
If it is not present, we can reference it. Note the missing {}. | |||
<code>'''class parentClass;''' | |||
class childClass : parentClass { | class childClass : parentClass { | ||
additionalAttribute = value; | additionalAttribute = value; | ||
};</code> | };</code> | ||
Attributes from parent classes can easily be redefined (which is different from overwritten). | |||
<code><nowiki>class parentClass { | <code><nowiki>class parentClass { | ||
parentAttribute = value; | parentAttribute = value; | ||
Line 40: | Line 64: | ||
==Commenting== | ==Commenting== | ||
===Line Comment=== | ===Line Comment=== | ||
A line comment is initiated by '''//''' and lasts until the end of the line. Comments are ignored at runtime, so there can be anything in there, including valid code which should not be used. | |||
//i am a comment | //i am a comment | ||
Line 47: | Line 72: | ||
===Block Comment=== | ===Block Comment=== | ||
A block comment is initiated by '''/*''' and lasts until the next '''*/'''. It can comment out multiple lines or less than a line. | |||
<code>/* i an a comment block <br> | <code>/* i an a comment block <br> | ||
and it works over multiple lines <br> | and it works over multiple lines <br> | ||
Line 54: | Line 80: | ||
==Formatting== | ==Formatting== | ||
The layout and format is a matter of taste. The best formatting is the formatting which suits you best. It is advisable to make it as easily readable as possible by using a lot of whitespaces like linebreaks and indents. The examples 1 and 2 use a lot of whitespace but are easily readable while example 3 is remarkably shorter and much less readable. Especially with multiple attributes this gets confusing. | |||
=== | ===Example 1=== | ||
<code>class name { | <code>class name { | ||
attribute = value; | attribute = value; | ||
Line 62: | Line 88: | ||
</code> | </code> | ||
=== | ===Example 2=== | ||
<code>class name | <code>class name | ||
{ | { | ||
Line 68: | Line 94: | ||
};</code> | };</code> | ||
=== | ===Example 3=== | ||
<code>class name {attribute1 = value;};</code> | <code>class name {attribute1 = value;};</code> | ||
==Preprocessor Commands== | ==Preprocessor Commands== | ||
Preprocessor commands are processed before the config has been used. | |||
===define=== | ===define=== | ||
The command define allows you to use variables in a config. | |||
Syntax: | Syntax: | ||
#define variableName value | #define variableName value | ||
Line 79: | Line 108: | ||
class button { | class button { | ||
backgroundColor = BASE_COLOR; | backgroundColor[] = BASE_COLOR; | ||
};</nowiki></code> | };</nowiki></code> | ||
===include=== | ===include=== | ||
This command merges another file into the file with this command. Allowed formats are .h and .hpp. | |||
Syntax: | Syntax: | ||
#include "path\to\file.hpp"; | #include "path\to\file.hpp"; |
Revision as of 16:24, 7 August 2009
Basic Config File
ATTENTION! This is far from being valuable information for anyone but contributors.
Syntax
Classes could be compared to folders. There is a folder for every object in ArmA. In every folder there are files which we will call attributes. A class definition with an attribute will look like this:
class name {
attribute = value;
};
There could also be an array of attributes.
class name {
attribute = value;
attributeArray[] = {value1,value2,value3};
};
There can't be two same classnames in a config. For example
class test {
attribute = value;
};
class test {
attribute = value;
};
will NOT work!
Same goes for two definitions of an attribute in one class.
class test {
attribute = value;
attribute = value;
};
Will not work!
Inheritance
With inheritance you can create a dependency of a object to a parent object. This saves you a lot of typing and makes it easier to maintain. A parent class is usually a generalisation. A Stryker for example is an APC and an APC is a ground vehicle.
We can inherit from another class by adding : className to our class. But the class needs to be present in the config. Like here:
class parentClass {
attribute = value;
};
class childClass : parentClass {
anotherAttribue = anotherValue;
};
If it is not present, we can reference it. Note the missing {}.
class parentClass;
class childClass : parentClass {
additionalAttribute = value;
};
Attributes from parent classes can easily be redefined (which is different from overwritten).
class parentClass {
parentAttribute = value;
};
class childClass : parentClass {
parentAttribute = newValue;
};
Commenting
Line Comment
A line comment is initiated by // and lasts until the end of the line. Comments are ignored at runtime, so there can be anything in there, including valid code which should not be used.
//i am a comment
notCommentedAttribute = notCommentedValue; // commented
// commentedAttribute = commentedValue
Block Comment
A block comment is initiated by /* and lasts until the next */. It can comment out multiple lines or less than a line.
/* i an a comment block
and it works over multiple lines
until its over */
notCommentedAttribute = /* commentedValue */ notCommentedValue;
Formatting
The layout and format is a matter of taste. The best formatting is the formatting which suits you best. It is advisable to make it as easily readable as possible by using a lot of whitespaces like linebreaks and indents. The examples 1 and 2 use a lot of whitespace but are easily readable while example 3 is remarkably shorter and much less readable. Especially with multiple attributes this gets confusing.
Example 1
class name {
attribute = value;
};
Example 2
class name
{
attribute = value;
};
Example 3
class name {attribute1 = value;};
Preprocessor Commands
Preprocessor commands are processed before the config has been used.
define
The command define allows you to use variables in a config. Syntax:
#define variableName value
Usage:
#define BASE_COLOR {0,0,0,0}
class button {
backgroundColor[] = BASE_COLOR;
};
include
This command merges another file into the file with this command. Allowed formats are .h and .hpp. Syntax:
#include "path\to\file.hpp";
Example Config
class cfgPatches {
class PBONAME {
requiredVersion = 1.0; // requires ArmA2 version 1.0
};
};
class cfgVehicles {
class SoldierWB; // a basic soldier class in ArmA
class someNewSoldier : SoldierWB {
displayName = "Rambo";
};
};