Eclipse projects
Contents
Structure
The following diagram shows the project structure of the ARS simulation environment, where the arrows represent the dependencies.
Projects
Simulation
MASON
MASON is a JAVA multiagent simulation framework developed by a project group at George Mason University. It is included into the ARS simulation environment as a library, so its source code is not part of the ARS project.
Entities
This project contains all the entities that exist in the simulation environment, except the ARSIN and some ARSIN-related entities. The decision to create a separate project for the entities is based on the consideration that the ARSIN project holds only the base data structures, and the ARS-related objects. The entities within this project are
clsApple | clsAppleGreen | clsCake |
clsCan | clsCarrot | clsFungus |
clsFungusEater | clsHare | clsLamp |
clsLynx | clsPlant | clsRectangleStationary |
clsRemoteBotOrientationTest | clsSchnitzel | clsSchnitzl |
clsSelf | clsSprout | clsStone |
clsToilet | clsTomato | clsUnrealHealth |
clsWallAxisAlign | clsWallHorizontal | clsWallVertical |
All the entities in this project are part of the entity hierarchy. The base classes of the hierarchy are found in the package entities.base in the ARSIN project.
EntityBase-Body-ARSIN
This project has two functions. First of all it provides the base modules and data structures for all objects that can be simulated. These modules are the entity base (abstract entitiys - see entity hierarchy), the bodies (and all its interfaces, sensors, actuators and attributes) and miscellaneous enums and tools. Secondly it contains the ARSIN and its related entities such as clsSmartExcrement and clsSpeech.
DecisionUnitInterface
DecisionUnits
ARSMemory
AlternativeDecisionUnits
DecisionUnitMasonInspectors
BodyEntityMasonInspectors
GeneralTools
GeneralTools comprises miscellaneous tools that are of general nature and are used by several modules. An example is the class clsGetARSPath that returns the directory file system paths of some resources and projects.