Editing – ArmA: Armed Assault

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (removed stub)
(25 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Stub}}
'''[[Armed Assault]]''' offers many possibilities to '''add new content''' to it. You can [[ArmA: Mission Editing|create missions]], [[ArmA: Addon Editing|introduce new vehicles]], enhance your missions and addons with the large [[Scripting|scripting]] capabilities or create a whole new [[ArmA: Total Conversions|total conversion]] - a game in the game.


===Introduction===
Many [[ArmA: Addon Groups|addon groups]] have formed and kept alive [[Operation Flashpoint]] until the release of [[Armed Assault]]. The '''nearly unlimited capabilities''' of addon and mission editing have brought completely different scenarios into the game than what it was originally designed for. Space mods, lego mods or mods simulating other games or films (Star Wars, Starship Troopers, Stargate, ...) have been created by creative members of the community.


Information relating to editing functions known to be compatible with ArmA.
[[Armed Assault]] means to even '''extend these capabilities'''. There are more possibilities when [[ArmA: Addon Editing|editing addons]], many [[:Category:Armed_Assault:_New_Scripting_Commands_List|new commands]] for [[Scripting|scripting]] and additional features for [[ArmA: Mission Editing|mission editors]].


===Applicability===
== Getting Started ==
 
Although Armed Assault is largely compatible with the original Operation Flashpoint series of games, no editing functions should be assumed to be fully compatible, unless they are specifically linked as Articles or Subcategories to this page.


The list of major changes since Operation Flashpoint is being compiled at [[Armed Assault: Editing - What Is New]]
* [[ArmA: Addon Editing|Creating addons]]
* [[ArmA: Mission Editing|Creating missions]]
* [[Scripting]]
* [[ArmA: Terrain Editing|Creating islands]]


== What's new ==
== Backward Compatibility ==


===World Editing===
Although [[Armed Assault]] is largely compatible with the original [[Operation Flashpoint]] series of games, no editing functions should be assumed to be fully compatible, unless they are specifically linked as Articles or Subcategories to this page. There are a few changes which often break existing code:


====Terrain Surface====
* [[String]] and [[Code]] are now two distinct types (see [[Code]])
[[Layered Terrain Surface Representation]]


====Environment====
== Forward Compatibility ==


[[Armed Assault: Ambient Life]]
[[ArmA 2]] will be largely compatible with [[Armed Assault]]. To make porting of content from ArmA as simple as possible, there are few important things:


[[Armed Assault: Ambient Sounds]]
* using of undefined variable in scripts (nil value) will be in ArmA 2 strictly reported as an error. All variables used in any scripts must be initialized before first use


===Modelling===
* in ArmA 2 namespaces will be introduced for user scripts and variables. There are many low level reasons to do this and most of the content will be not be affected by this in any negative way. However, in order to be prepared, it is very important to separate UI related scripts and code as much as possible and not simply share global variables between UI and missions as UI namespace needs to be handled differently.


In addition to [[Textures]] used before, [[Materials]] define lighting properties and multiple texture layers
* in order to maintain smooth frame rate in real-time content, time limit for all scripts in each frame is enforced by the engine in ArmA 2. Generally speaking, in case of more demanding scripts, be prepared that their result may come way later and also there probably can suffer from significant latency. It is under evaluation if and how possibly allow user scripts to change how much time they may take from the CPU in every frame.


[[Model Config]] based animations
== What's new ==


===Vehicle / Weapon Configuration===
=== Mission Editing ===


[[HUD in Vehicles]]
* Official and Community [[:Category:ArmA: Community Tools|Tools]]. Eg: PBO file handling and more.


===Scripting===
=== Addon Editing ===


Precompilation - [[Code]] is now distinct type
* In addition to [[Textures]] used before, [[Materials]] define lighting properties and multiple texture layers
* [[Model Config]] based animations
* [[HUD|Heads-up-displays]]


===Mission Editing===
=== Scripting ===


===AI Modification===
* Precompilation - [[Code]] is now distinct type
 
Each unit type can define its own FSM defining how the unit behaves when acting as a part of the formation [[Armed Assault: FormationFSM]]
 
== Getting Started ==


Editing means creating new game missions, 3D objects, scripts, textures, sounds, or re-making current.
=== Terrain Editing ===


=== How can I start? ===
;Terrain Surface
* [[Layered Terrain Surface Representation]]


Choose things you think you can do and find some tutorials and serials about them, this wiki can be helpful. Try to learn it and practise. Exploring (hacking) existing things from experienced people than you can help too.
=== AI Modification ===


=== What next? ===
* Each unit type can define its own [[FSM]] (AI logic) defining how the unit behaves when acting as a part of the formation [[Armed Assault: FormationFSM]]


[[Category:ArmA: Editing| ]]
[[Category:ArmA: Editing| ]]

Revision as of 01:24, 13 December 2018

Armed Assault offers many possibilities to add new content to it. You can create missions, introduce new vehicles, enhance your missions and addons with the large scripting capabilities or create a whole new total conversion - a game in the game.

Many addon groups have formed and kept alive Operation Flashpoint until the release of Armed Assault. The nearly unlimited capabilities of addon and mission editing have brought completely different scenarios into the game than what it was originally designed for. Space mods, lego mods or mods simulating other games or films (Star Wars, Starship Troopers, Stargate, ...) have been created by creative members of the community.

Armed Assault means to even extend these capabilities. There are more possibilities when editing addons, many new commands for scripting and additional features for mission editors.

Getting Started

Backward Compatibility

Although Armed Assault is largely compatible with the original Operation Flashpoint series of games, no editing functions should be assumed to be fully compatible, unless they are specifically linked as Articles or Subcategories to this page. There are a few changes which often break existing code:

Forward Compatibility

ArmA 2 will be largely compatible with Armed Assault. To make porting of content from ArmA as simple as possible, there are few important things:

  • using of undefined variable in scripts (nil value) will be in ArmA 2 strictly reported as an error. All variables used in any scripts must be initialized before first use
  • in ArmA 2 namespaces will be introduced for user scripts and variables. There are many low level reasons to do this and most of the content will be not be affected by this in any negative way. However, in order to be prepared, it is very important to separate UI related scripts and code as much as possible and not simply share global variables between UI and missions as UI namespace needs to be handled differently.
  • in order to maintain smooth frame rate in real-time content, time limit for all scripts in each frame is enforced by the engine in ArmA 2. Generally speaking, in case of more demanding scripts, be prepared that their result may come way later and also there probably can suffer from significant latency. It is under evaluation if and how possibly allow user scripts to change how much time they may take from the CPU in every frame.

What's new

Mission Editing

  • Official and Community Tools. Eg: PBO file handling and more.

Addon Editing

Scripting

  • Precompilation - Code is now distinct type

Terrain Editing

Terrain Surface

AI Modification