Changes between Version 10 and Version 11 of Java Quagents Client


Ignore:
Timestamp:
Sep 1, 2011 4:23:40 PM (13 years ago)
Author:
jherwitz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Java Quagents Client

    v10 v11  
    3030== Internal Structure ==
    3131
     32=== Entities ===
     33
     34All objects in quake which may impact the game world are treated as Entities, and represented with the Entity interface.
     35
     36=== Commands ===
     37The Java client is built on Command objects. These objects each represent one or more commands. Each command must first be instantiated, which sets all relevant parameters and generates necessary structures for use in data retrieval. At this point, the Command is independent of a command "executor". Once the command is constructed, it must then be attached to an executor. This may most easily be accomplished by using the Entity  Another important structure is the non-blocking ReaderThread. Each entity has a ReaderThread associated
     38
    3239== External (User-Level) Structure ==
    3340