Scripting: Do's and Don'ts – Arma Reforger
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "</syntaxhighlight>" to "</enforce>") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 1: | Line 1: | ||
{| class="wikitable" style="width: 100%" | {| class="wikitable" style="width: 100%" | ||
|+ {{Feature|important|Do follow {{Link|Arma Reforger:Scripting: Conventions|Scripting Conventions}}.}} | |||
! style="width: 50%" | Don't | ! style="width: 50%" | Don't | ||
! style="width: 50%" | Do | ! style="width: 50%" | Do | ||
|- style="vertical-align: top" | |- style="vertical-align: top" | ||
| | | | ||
<enforce> | <enforce noGuess> | ||
class ExampleClass { | class ExampleClass { | ||
int LProcLgh; | int LProcLgh; | ||
Line 38: | Line 37: | ||
|} | |} | ||
{| class="wikitable" style="width: 100%" | {| class="wikitable" style="width: 100%" | ||
|+ {{Feature|important|Keep variables as close as possible to their usage.}} | |||
! style="width: 50%" | Don't | ! style="width: 50%" | Don't | ||
! style="width: 50%" | Do | ! style="width: 50%" | Do | ||
Line 73: | Line 72: | ||
|} | |} | ||
{| class="wikitable" style="width: 100%" | {| class="wikitable" style="width: 100%" | ||
|+ {{Feature|important|Keep a strong reference (<enforce inline>ref</enforce> keyword) to required objects.}} | |||
! style="width: 50%" | Don't | ! style="width: 50%" | Don't | ||
! style="width: 50%" | Do | ! style="width: 50%" | Do | ||
Line 105: | Line 104: | ||
|} | |} | ||
{| class="wikitable" style="width: 100%" | {| class="wikitable" style="width: 100%" | ||
|+ {{Feature|important|Avoid strong reference cyclic trap.}} | |||
! style="width: 50%" | Don't | ! style="width: 50%" | Don't | ||
! style="width: 50%" | Do | ! style="width: 50%" | Do | ||
Line 114: | Line 113: | ||
class MainClass | class MainClass | ||
{ | { | ||
ref SubClass | ref SubClass m_SubClass; | ||
void MainClass() | void MainClass() | ||
{ | { | ||
m_SubClass = new SubClass(this); | |||
} | } | ||
} | } | ||
Line 124: | Line 123: | ||
class SubClass | class SubClass | ||
{ | { | ||
ref MainClass | ref MainClass m_Parent; | ||
void SubClass(MainClass parent) | void SubClass(MainClass parent) | ||
{ | { | ||
m_Parent = parent; | |||
} | } | ||
void DoSomething() | void DoSomething() | ||
{ | { | ||
Print( | Print(m_Parent); | ||
} | } | ||
} | } | ||
Line 141: | Line 140: | ||
class MainClass | class MainClass | ||
{ | { | ||
ref SubClass | ref SubClass m_SubClass; | ||
void MainClass() | void MainClass() | ||
{ | { | ||
m_SubClass = new SubClass(this); | |||
} | } | ||
} | } | ||
Line 151: | Line 150: | ||
class SubClass | class SubClass | ||
{ | { | ||
MainClass | MainClass m_Parent; // ref removed | ||
void SubClass(MainClass parent) | void SubClass(MainClass parent) | ||
{ | { | ||
m_Parent = parent; | |||
} | } | ||
void DoSomething() | void DoSomething() | ||
{ | { | ||
if (! | if (!m_Parent) // null safety check | ||
return; | return; | ||
Print( | Print(m_Parent); | ||
} | } | ||
} | } |
Revision as of 01:11, 17 June 2023
Don't | Do |
---|---|
Don't | Do |
---|---|
Don't | Do |
---|---|
// this array only lists pointers but does not increase the reference count
array<ExampleClass> classArray = new array<ExampleClass>();
for (int i = 0; i < 10; i++)
{
ExampleClass newInstance = new ExampleClass();
classArray.Insert(newInstance);
// newInstance will be deleted at the end of the scope
// as there are no references to it
} |
// this array keeps strong references to its items
array<ref ExampleClass> classArray = new array<ref ExampleClass>();
for (int i = 0; i < 10; i++)
{
ExampleClass newInstance = new ExampleClass();
classArray.Insert(newInstance);
// classArray keeps a strong reference to newInstance - it will not be cleared
} |
Don't | Do |
---|---|
class MainClass
{
ref SubClass m_SubClass;
void MainClass()
{
m_SubClass = new SubClass(this);
}
}
class SubClass
{
ref MainClass m_Parent;
void SubClass(MainClass parent)
{
m_Parent = parent;
}
void DoSomething()
{
Print(m_Parent);
}
} |
class MainClass
{
ref SubClass m_SubClass;
void MainClass()
{
m_SubClass = new SubClass(this);
}
}
class SubClass
{
MainClass m_Parent; // ref removed
void SubClass(MainClass parent)
{
m_Parent = parent;
}
void DoSomething()
{
if (!m_Parent) // null safety check
return;
Print(m_Parent);
}
} |