@@ -1,24 +1,24 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | function DeArchive($data) { |
| 3 | - if(is_string($data)) { |
|
| 4 | - if(substr($data,0,55) == "Creatures Evolution Engine - Archived information file.") { |
|
| 5 | - $data = substr($data,strpos($data,chr(0x1A).chr(0x04))+2); |
|
| 6 | - $data = gzuncompress($data); |
|
| 7 | - return $data; |
|
| 8 | - } |
|
| 9 | - die('Couldn\'t dearchive -- Probably invalid file'); |
|
| 10 | - return false; |
|
| 11 | - } else if(is_resource($data)) { |
|
| 12 | - return false; //coming soon |
|
| 13 | - } |
|
| 3 | + if(is_string($data)) { |
|
| 4 | + if(substr($data,0,55) == "Creatures Evolution Engine - Archived information file.") { |
|
| 5 | + $data = substr($data,strpos($data,chr(0x1A).chr(0x04))+2); |
|
| 6 | + $data = gzuncompress($data); |
|
| 7 | + return $data; |
|
| 8 | + } |
|
| 9 | + die('Couldn\'t dearchive -- Probably invalid file'); |
|
| 10 | + return false; |
|
| 11 | + } else if(is_resource($data)) { |
|
| 12 | + return false; //coming soon |
|
| 13 | + } |
|
| 14 | 14 | } |
| 15 | 15 | function Archive($data,$filehandle=null) { |
| 16 | - if(is_resource($filehandle)) { |
|
| 17 | - return false; |
|
| 18 | - } |
|
| 19 | - $data = gzcompress($data); |
|
| 20 | - $data = "Creatures Evolution Engine - Archived information file. zLib 1.13 compressed.".chr(0x1A).chr(0x04).$data; |
|
| 21 | - return $data; |
|
| 16 | + if(is_resource($filehandle)) { |
|
| 17 | + return false; |
|
| 18 | + } |
|
| 19 | + $data = gzcompress($data); |
|
| 20 | + $data = "Creatures Evolution Engine - Archived information file. zLib 1.13 compressed.".chr(0x1A).chr(0x04).$data; |
|
| 21 | + return $data; |
|
| 22 | 22 | |
| 23 | 23 | } |
| 24 | 24 | ?> |
| 25 | 25 | \ No newline at end of file |
@@ -4,16 +4,16 @@ |
||
| 4 | 4 | class PRAYFileTest extends c2ephpAbstractTestCase { |
| 5 | 5 | |
| 6 | 6 | /** |
| 7 | - * @dataProvider createAgentFiles |
|
| 8 | - */ |
|
| 7 | + * @dataProvider createAgentFiles |
|
| 8 | + */ |
|
| 9 | 9 | public function testCreatePRAYFile(PRAYFile $prayfile) { |
| 10 | 10 | $this->assertInstanceOf('PRAYFile',$prayfile); |
| 11 | 11 | $this->assertNotNull($prayfile); |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
| 15 | - * @dataProvider createAgentFiles |
|
| 16 | - */ |
|
| 15 | + * @dataProvider createAgentFiles |
|
| 16 | + */ |
|
| 17 | 17 | public function testNumberOfBlocks(PRAYFile $prayfile,$fixtureInfo) { |
| 18 | 18 | $this->assertNotNull($prayfile); |
| 19 | 19 | $this->assertEquals($fixtureInfo['block count'],sizeof($prayfile->GetBlocks())); |
@@ -15,31 +15,31 @@ |
||
| 15 | 15 | * Reads in the IReader and creates SPRFrames as required. |
| 16 | 16 | * @param $reader An IReader to read from. |
| 17 | 17 | */ |
| 18 | - public function SPRFile(IReader $reader) { |
|
| 19 | - parent::SpriteFile('SPR'); |
|
| 20 | - $frameCount = $reader->ReadInt(2); |
|
| 18 | + public function SPRFile(IReader $reader) { |
|
| 19 | + parent::SpriteFile('SPR'); |
|
| 20 | + $frameCount = $reader->ReadInt(2); |
|
| 21 | 21 | |
| 22 | - for($i=0;$i<$frameCount;$i++) { |
|
| 23 | - $offset = $reader->ReadInt(4); |
|
| 24 | - $width = $reader->ReadInt(2); |
|
| 25 | - $height = $reader->ReadInt(2); |
|
| 26 | - $this->AddFrame(new SPRFrame($reader,$width,$height,$offset)); |
|
| 27 | - } |
|
| 28 | - } |
|
| 22 | + for($i=0;$i<$frameCount;$i++) { |
|
| 23 | + $offset = $reader->ReadInt(4); |
|
| 24 | + $width = $reader->ReadInt(2); |
|
| 25 | + $height = $reader->ReadInt(2); |
|
| 26 | + $this->AddFrame(new SPRFrame($reader,$width,$height,$offset)); |
|
| 27 | + } |
|
| 28 | + } |
|
| 29 | 29 | |
| 30 | 30 | /// @brief Compiles the SPR file into a binary string |
| 31 | - public function Compile() { |
|
| 32 | - $data = pack('v',$this->GetFrameCount()); |
|
| 33 | - $offset = 2+(8*$this->GetFrameCount()); |
|
| 34 | - foreach($this->GetFrames() as $frame) { |
|
| 35 | - $data .= pack('V',$offset); |
|
| 36 | - $data .= pack('vv',$frame->GetWidth(),$frame->GetHeight()); |
|
| 37 | - $offset += $frame->GetWidth()*$frame->GetHeight(); |
|
| 38 | - } |
|
| 39 | - foreach($this->GetFrames() as $frame) { |
|
| 40 | - $data .= $frame->Encode(); |
|
| 41 | - } |
|
| 42 | - return $data; |
|
| 43 | - } |
|
| 31 | + public function Compile() { |
|
| 32 | + $data = pack('v',$this->GetFrameCount()); |
|
| 33 | + $offset = 2+(8*$this->GetFrameCount()); |
|
| 34 | + foreach($this->GetFrames() as $frame) { |
|
| 35 | + $data .= pack('V',$offset); |
|
| 36 | + $data .= pack('vv',$frame->GetWidth(),$frame->GetHeight()); |
|
| 37 | + $offset += $frame->GetWidth()*$frame->GetHeight(); |
|
| 38 | + } |
|
| 39 | + foreach($this->GetFrames() as $frame) { |
|
| 40 | + $data .= $frame->Encode(); |
|
| 41 | + } |
|
| 42 | + return $data; |
|
| 43 | + } |
|
| 44 | 44 | } |
| 45 | 45 | ?> |
@@ -3,110 +3,110 @@ |
||
| 3 | 3 | /// @brief Superclass for all SpriteFile types |
| 4 | 4 | abstract class SpriteFile { |
| 5 | 5 | |
| 6 | - /// @cond INTERNAL_DOCS |
|
| 6 | + /// @cond INTERNAL_DOCS |
|
| 7 | 7 | |
| 8 | - private $frames = array(); |
|
| 9 | - private $spritefiletype; |
|
| 10 | - /// @endcond |
|
| 8 | + private $frames = array(); |
|
| 9 | + private $spritefiletype; |
|
| 10 | + /// @endcond |
|
| 11 | 11 | |
| 12 | - /// @cond INTERNAL_DOCS |
|
| 12 | + /// @cond INTERNAL_DOCS |
|
| 13 | 13 | |
| 14 | - public function SpriteFile($filetype) { |
|
| 14 | + public function SpriteFile($filetype) { |
|
| 15 | 15 | $this->spritefiletype = $filetype; |
| 16 | - } |
|
| 17 | - /// @endcond |
|
| 16 | + } |
|
| 17 | + /// @endcond |
|
| 18 | 18 | |
| 19 | - /// @brief Gets a SpriteFrame from the SpriteFile. |
|
| 20 | - /** |
|
| 21 | - * @param $frame The 0-based index of the frame to get. |
|
| 22 | - * @return A SpriteFrame |
|
| 23 | - */ |
|
| 24 | - public function GetFrame($frame) { |
|
| 25 | - return $this->frames[$frame]; |
|
| 26 | - } |
|
| 27 | - /// @brief Gets the entire frame array. |
|
| 28 | - /** |
|
| 29 | - * @return An array of SpriteFrames |
|
| 30 | - */ |
|
| 31 | - public function GetFrames() { |
|
| 32 | - return $this->frames; |
|
| 33 | - } |
|
| 19 | + /// @brief Gets a SpriteFrame from the SpriteFile. |
|
| 20 | + /** |
|
| 21 | + * @param $frame The 0-based index of the frame to get. |
|
| 22 | + * @return A SpriteFrame |
|
| 23 | + */ |
|
| 24 | + public function GetFrame($frame) { |
|
| 25 | + return $this->frames[$frame]; |
|
| 26 | + } |
|
| 27 | + /// @brief Gets the entire frame array. |
|
| 28 | + /** |
|
| 29 | + * @return An array of SpriteFrames |
|
| 30 | + */ |
|
| 31 | + public function GetFrames() { |
|
| 32 | + return $this->frames; |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | - /// @brief Compiles the SpriteFile into a binary string |
|
| 36 | - /** |
|
| 37 | - * @return A binary string containing the SpriteFile's data and frames. |
|
| 38 | - */ |
|
| 39 | - public abstract function Compile(); |
|
| 35 | + /// @brief Compiles the SpriteFile into a binary string |
|
| 36 | + /** |
|
| 37 | + * @return A binary string containing the SpriteFile's data and frames. |
|
| 38 | + */ |
|
| 39 | + public abstract function Compile(); |
|
| 40 | 40 | |
| 41 | - /// @brief Adds a SpriteFrame to the SpriteFile |
|
| 42 | - /** |
|
| 43 | - * If necessary, this function converts the SpriteFrame to the |
|
| 44 | - * correct format. |
|
| 45 | - * At the moment, this can only add a SpriteFrame to the end of the |
|
| 46 | - * SpriteFile. TODO: I aim to fix this by the CCSF 2011. |
|
| 47 | - * @internal |
|
| 48 | - * This process uses some magic which require all types of |
|
| 49 | - * SpriteFile and SpriteFrame to use 3-character identifiers. |
|
| 50 | - * This means that if you want to make your own sprite formats |
|
| 51 | - * you'll need to override this function and provide all our magic |
|
| 52 | - * plus your own. |
|
| 53 | - * @endinternal |
|
| 54 | - * @param $frame A SpriteFrame |
|
| 55 | - * @param $position Where to put the frame. Currently un-used. |
|
| 56 | - */ |
|
| 57 | - public function AddFrame(SpriteFrame $frame, $position=false) { |
|
| 58 | - /* |
|
| 41 | + /// @brief Adds a SpriteFrame to the SpriteFile |
|
| 42 | + /** |
|
| 43 | + * If necessary, this function converts the SpriteFrame to the |
|
| 44 | + * correct format. |
|
| 45 | + * At the moment, this can only add a SpriteFrame to the end of the |
|
| 46 | + * SpriteFile. TODO: I aim to fix this by the CCSF 2011. |
|
| 47 | + * @internal |
|
| 48 | + * This process uses some magic which require all types of |
|
| 49 | + * SpriteFile and SpriteFrame to use 3-character identifiers. |
|
| 50 | + * This means that if you want to make your own sprite formats |
|
| 51 | + * you'll need to override this function and provide all our magic |
|
| 52 | + * plus your own. |
|
| 53 | + * @endinternal |
|
| 54 | + * @param $frame A SpriteFrame |
|
| 55 | + * @param $position Where to put the frame. Currently un-used. |
|
| 56 | + */ |
|
| 57 | + public function AddFrame(SpriteFrame $frame, $position=false) { |
|
| 58 | + /* |
|
| 59 | 59 | if($position === false) { |
| 60 | 60 | $position = sizeof($this->frames); |
| 61 | 61 | } else if($position < 0) { |
| 62 | 62 | $position = sizeof($this->frames) - $position; |
| 63 | 63 | } |
| 64 | 64 | */ |
| 65 | - if($this->spritefiletype == substr(get_class($frame),0,3)) { |
|
| 66 | - //$this->frames[$position] = $frame; |
|
| 67 | - $this->frames[] = $frame; |
|
| 68 | - } else { |
|
| 69 | - //$this->frames[$position] = $frame->ToSpriteFrame($this->spritefiletype); |
|
| 70 | - $this->frames[] = $frame->ToSpriteFrame($this->spritefiletype); |
|
| 71 | - } |
|
| 72 | - } |
|
| 73 | - /// @brief Replaces a frame in the SpriteFile |
|
| 74 | - /** |
|
| 75 | - * Replaces the frame in the given position |
|
| 76 | - * Uses the same magic as AddFrame |
|
| 77 | - * @param $frame A SpriteFrame of any type. |
|
| 78 | - * @param $position Which frame to replace. If negative, counts |
|
| 79 | - * backwards from the end of the frames array. |
|
| 80 | - */ |
|
| 81 | - public function ReplaceFrame(SpriteFrame $frame, $position) { |
|
| 82 | - if($position < 0) { |
|
| 83 | - $position = sizeof($this->frames) - $position; |
|
| 84 | - } |
|
| 85 | - $this->frames[$position] = $frame->ToSpriteFrame($this->spritefiletype); |
|
| 86 | - } |
|
| 87 | - /// @brief Gets the number of frames currently stored in this SpriteFile. |
|
| 88 | - /** |
|
| 89 | - * @return The number of frames |
|
| 90 | - */ |
|
| 91 | - public function GetFrameCount() { |
|
| 92 | - return sizeof($this->frames); |
|
| 93 | - } |
|
| 94 | - /// @brief Deletes the frame in the given position. |
|
| 95 | - /** |
|
| 96 | - * @param $frame The 0-based index of the frame to delete. |
|
| 97 | - */ |
|
| 98 | - public function DeleteFrame($frame) { |
|
| 99 | - unset($this->frames[$frame]); |
|
| 100 | - } |
|
| 101 | - /// @brief Converts the given frame to PNG. <strong>Deprecated.</strong> |
|
| 102 | - /** |
|
| 103 | - * May be removed in a future release. |
|
| 104 | - * Use GetFrame($frame)->ToPNG() instead. |
|
| 105 | - * @param $frame The 0-based index of the frame to delete. |
|
| 106 | - * @return A binary string containing a PNG. |
|
| 107 | - */ |
|
| 108 | - public function ToPNG($frame) { |
|
| 109 | - return $this->frames[$frame]->ToPNG(); |
|
| 110 | - } |
|
| 65 | + if($this->spritefiletype == substr(get_class($frame),0,3)) { |
|
| 66 | + //$this->frames[$position] = $frame; |
|
| 67 | + $this->frames[] = $frame; |
|
| 68 | + } else { |
|
| 69 | + //$this->frames[$position] = $frame->ToSpriteFrame($this->spritefiletype); |
|
| 70 | + $this->frames[] = $frame->ToSpriteFrame($this->spritefiletype); |
|
| 71 | + } |
|
| 72 | + } |
|
| 73 | + /// @brief Replaces a frame in the SpriteFile |
|
| 74 | + /** |
|
| 75 | + * Replaces the frame in the given position |
|
| 76 | + * Uses the same magic as AddFrame |
|
| 77 | + * @param $frame A SpriteFrame of any type. |
|
| 78 | + * @param $position Which frame to replace. If negative, counts |
|
| 79 | + * backwards from the end of the frames array. |
|
| 80 | + */ |
|
| 81 | + public function ReplaceFrame(SpriteFrame $frame, $position) { |
|
| 82 | + if($position < 0) { |
|
| 83 | + $position = sizeof($this->frames) - $position; |
|
| 84 | + } |
|
| 85 | + $this->frames[$position] = $frame->ToSpriteFrame($this->spritefiletype); |
|
| 86 | + } |
|
| 87 | + /// @brief Gets the number of frames currently stored in this SpriteFile. |
|
| 88 | + /** |
|
| 89 | + * @return The number of frames |
|
| 90 | + */ |
|
| 91 | + public function GetFrameCount() { |
|
| 92 | + return sizeof($this->frames); |
|
| 93 | + } |
|
| 94 | + /// @brief Deletes the frame in the given position. |
|
| 95 | + /** |
|
| 96 | + * @param $frame The 0-based index of the frame to delete. |
|
| 97 | + */ |
|
| 98 | + public function DeleteFrame($frame) { |
|
| 99 | + unset($this->frames[$frame]); |
|
| 100 | + } |
|
| 101 | + /// @brief Converts the given frame to PNG. <strong>Deprecated.</strong> |
|
| 102 | + /** |
|
| 103 | + * May be removed in a future release. |
|
| 104 | + * Use GetFrame($frame)->ToPNG() instead. |
|
| 105 | + * @param $frame The 0-based index of the frame to delete. |
|
| 106 | + * @return A binary string containing a PNG. |
|
| 107 | + */ |
|
| 108 | + public function ToPNG($frame) { |
|
| 109 | + return $this->frames[$frame]->ToPNG(); |
|
| 110 | + } |
|
| 111 | 111 | } |
| 112 | 112 | ?> |
@@ -5,93 +5,93 @@ |
||
| 5 | 5 | /// @brief DS CAOS dictionary of tokens that can act like commands or variables |
| 6 | 6 | class DSCAOSCommandVariables { |
| 7 | 7 | /// @brief Returns an array of tokens. |
| 8 | - public static function GetTokens() { |
|
| 9 | - return array( |
|
| 10 | - 'attr', |
|
| 11 | - 'base', |
|
| 12 | - 'bhvr', |
|
| 13 | - 'clik', //I have no experience using this, but I think this is right. |
|
| 14 | - 'gall', |
|
| 15 | - 'hand', |
|
| 16 | - 'mira', |
|
| 17 | - 'paus', |
|
| 18 | - 'plne', |
|
| 19 | - 'pose', |
|
| 20 | - 'rnge', |
|
| 21 | - 'targ', |
|
| 22 | - 'tick', |
|
| 8 | + public static function GetTokens() { |
|
| 9 | + return array( |
|
| 10 | + 'attr', |
|
| 11 | + 'base', |
|
| 12 | + 'bhvr', |
|
| 13 | + 'clik', //I have no experience using this, but I think this is right. |
|
| 14 | + 'gall', |
|
| 15 | + 'hand', |
|
| 16 | + 'mira', |
|
| 17 | + 'paus', |
|
| 18 | + 'plne', |
|
| 19 | + 'pose', |
|
| 20 | + 'rnge', |
|
| 21 | + 'targ', |
|
| 22 | + 'tick', |
|
| 23 | 23 | |
| 24 | - //camera |
|
| 25 | - 'meta', |
|
| 26 | - 'trck', |
|
| 27 | - 'wdow', |
|
| 24 | + //camera |
|
| 25 | + 'meta', |
|
| 26 | + 'trck', |
|
| 27 | + 'wdow', |
|
| 28 | 28 | |
| 29 | - //compound |
|
| 30 | - 'page', |
|
| 31 | - 'ptxt', |
|
| 29 | + //compound |
|
| 30 | + 'page', |
|
| 31 | + 'ptxt', |
|
| 32 | 32 | |
| 33 | - //creatures |
|
| 34 | - 'aslp', |
|
| 35 | - 'dead', |
|
| 36 | - 'dirn', |
|
| 37 | - 'drea', |
|
| 38 | - 'face', |
|
| 39 | - 'ins#', |
|
| 40 | - 'mind', |
|
| 41 | - 'motr', |
|
| 42 | - 'norn', |
|
| 43 | - 'uncs', |
|
| 44 | - 'zomb', |
|
| 33 | + //creatures |
|
| 34 | + 'aslp', |
|
| 35 | + 'dead', |
|
| 36 | + 'dirn', |
|
| 37 | + 'drea', |
|
| 38 | + 'face', |
|
| 39 | + 'ins#', |
|
| 40 | + 'mind', |
|
| 41 | + 'motr', |
|
| 42 | + 'norn', |
|
| 43 | + 'uncs', |
|
| 44 | + 'zomb', |
|
| 45 | 45 | |
| 46 | - //files |
|
| 46 | + //files |
|
| 47 | 47 | |
| 48 | - //input |
|
| 49 | - 'pure', |
|
| 48 | + //input |
|
| 49 | + 'pure', |
|
| 50 | 50 | |
| 51 | - //map |
|
| 52 | - 'perm', |
|
| 51 | + //map |
|
| 52 | + 'perm', |
|
| 53 | 53 | |
| 54 | - //motion |
|
| 55 | - 'accg', |
|
| 56 | - 'admp', |
|
| 57 | - 'aero', |
|
| 58 | - 'avel', |
|
| 59 | - 'elas', |
|
| 60 | - 'fdmp', |
|
| 61 | - 'fric', |
|
| 62 | - 'fvel', |
|
| 63 | - 'sdmp', |
|
| 64 | - 'spin', |
|
| 65 | - 'svel', |
|
| 66 | - 'varc', |
|
| 54 | + //motion |
|
| 55 | + 'accg', |
|
| 56 | + 'admp', |
|
| 57 | + 'aero', |
|
| 58 | + 'avel', |
|
| 59 | + 'elas', |
|
| 60 | + 'fdmp', |
|
| 61 | + 'fric', |
|
| 62 | + 'fvel', |
|
| 63 | + 'sdmp', |
|
| 64 | + 'spin', |
|
| 65 | + 'svel', |
|
| 66 | + 'varc', |
|
| 67 | 67 | |
| 68 | - //ports |
|
| 68 | + //ports |
|
| 69 | 69 | |
| 70 | - //resources |
|
| 70 | + //resources |
|
| 71 | 71 | |
| 72 | - //caos |
|
| 72 | + //caos |
|
| 73 | 73 | |
| 74 | - //sounds |
|
| 75 | - 'vois', |
|
| 74 | + //sounds |
|
| 75 | + 'vois', |
|
| 76 | 76 | |
| 77 | - //time |
|
| 78 | - 'buzz', |
|
| 79 | - 'wpau', |
|
| 80 | - 'targ', |
|
| 77 | + //time |
|
| 78 | + 'buzz', |
|
| 79 | + 'wpau', |
|
| 80 | + 'targ', |
|
| 81 | 81 | |
| 82 | - //vehicles |
|
| 83 | - 'cabp', |
|
| 84 | - 'cabv', |
|
| 82 | + //vehicles |
|
| 83 | + 'cabp', |
|
| 84 | + 'cabv', |
|
| 85 | 85 | |
| 86 | - //world |
|
| 87 | - 'delw', |
|
| 88 | - 'load', |
|
| 86 | + //world |
|
| 87 | + 'delw', |
|
| 88 | + 'load', |
|
| 89 | 89 | |
| 90 | - //net |
|
| 91 | - 'net: line', |
|
| 92 | - 'net: pass' |
|
| 93 | - ); |
|
| 94 | - } |
|
| 90 | + //net |
|
| 91 | + 'net: line', |
|
| 92 | + 'net: pass' |
|
| 93 | + ); |
|
| 94 | + } |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /// @endcond |
@@ -4,22 +4,22 @@ |
||
| 4 | 4 | /// @brief Valid operators for DS CAOS */ |
| 5 | 5 | class DSCAOSOperators { |
| 6 | 6 | /// @brief Returns an array of tokens. |
| 7 | - public static function GetTokens() { |
|
| 8 | - return array( |
|
| 9 | - '=', |
|
| 10 | - '<>', |
|
| 11 | - '<', |
|
| 12 | - '<=', |
|
| 13 | - '>', |
|
| 14 | - '>=', |
|
| 15 | - 'eq', |
|
| 16 | - 'gt', |
|
| 17 | - 'lt', |
|
| 18 | - 'ne', |
|
| 19 | - 'and', |
|
| 20 | - 'or' |
|
| 21 | - ); |
|
| 22 | - } |
|
| 7 | + public static function GetTokens() { |
|
| 8 | + return array( |
|
| 9 | + '=', |
|
| 10 | + '<>', |
|
| 11 | + '<', |
|
| 12 | + '<=', |
|
| 13 | + '>', |
|
| 14 | + '>=', |
|
| 15 | + 'eq', |
|
| 16 | + 'gt', |
|
| 17 | + 'lt', |
|
| 18 | + 'ne', |
|
| 19 | + 'and', |
|
| 20 | + 'or' |
|
| 21 | + ); |
|
| 22 | + } |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | /// @endcond |
@@ -5,36 +5,36 @@ |
||
| 5 | 5 | /// @brief DS CAOS flow control (doif, else, loop, etc) dictionary |
| 6 | 6 | class DSCAOSFlowControls { |
| 7 | 7 | /// @brief Returns an array of tokens. |
| 8 | - public static function GetTokens() { |
|
| 9 | - return array( |
|
| 10 | - 'doif', |
|
| 11 | - 'econ', |
|
| 12 | - 'elif', |
|
| 13 | - 'else', |
|
| 14 | - 'enum', |
|
| 15 | - 'endi', |
|
| 16 | - 'endm', |
|
| 17 | - 'epas', |
|
| 18 | - 'esee', |
|
| 19 | - 'etch', |
|
| 20 | - 'ever', |
|
| 21 | - 'goto', |
|
| 22 | - 'gsub', |
|
| 23 | - 'inst', |
|
| 24 | - 'iscr', |
|
| 25 | - 'loop', |
|
| 26 | - 'next', |
|
| 27 | - 'over', //wait until current agent anim is over...sounds like a flow control to me. |
|
| 28 | - 'repe', |
|
| 29 | - 'reps', |
|
| 30 | - 'retn', |
|
| 31 | - 'rscr', |
|
| 32 | - 'scrp', |
|
| 33 | - 'slow', |
|
| 34 | - 'subr', |
|
| 35 | - 'untl', |
|
| 36 | - ); |
|
| 37 | - } |
|
| 8 | + public static function GetTokens() { |
|
| 9 | + return array( |
|
| 10 | + 'doif', |
|
| 11 | + 'econ', |
|
| 12 | + 'elif', |
|
| 13 | + 'else', |
|
| 14 | + 'enum', |
|
| 15 | + 'endi', |
|
| 16 | + 'endm', |
|
| 17 | + 'epas', |
|
| 18 | + 'esee', |
|
| 19 | + 'etch', |
|
| 20 | + 'ever', |
|
| 21 | + 'goto', |
|
| 22 | + 'gsub', |
|
| 23 | + 'inst', |
|
| 24 | + 'iscr', |
|
| 25 | + 'loop', |
|
| 26 | + 'next', |
|
| 27 | + 'over', //wait until current agent anim is over...sounds like a flow control to me. |
|
| 28 | + 'repe', |
|
| 29 | + 'reps', |
|
| 30 | + 'retn', |
|
| 31 | + 'rscr', |
|
| 32 | + 'scrp', |
|
| 33 | + 'slow', |
|
| 34 | + 'subr', |
|
| 35 | + 'untl', |
|
| 36 | + ); |
|
| 37 | + } |
|
| 38 | 38 | } |
| 39 | 39 | /// @endcond |
| 40 | 40 | ?> |
@@ -7,165 +7,165 @@ |
||
| 7 | 7 | */ |
| 8 | 8 | class DSCAOSVariables { |
| 9 | 9 | /// @brief Returns an array of tokens. |
| 10 | - public static function GetTokens() { |
|
| 11 | - return array( |
|
| 12 | - //agents |
|
| 13 | - 'abba', |
|
| 14 | - 'carr', |
|
| 15 | - 'cata', |
|
| 16 | - 'clac', |
|
| 17 | - 'fltx', |
|
| 18 | - 'flty', |
|
| 19 | - 'fmly', |
|
| 20 | - 'from', |
|
| 21 | - 'gnus', |
|
| 22 | - 'held', |
|
| 23 | - 'hght', |
|
| 24 | - 'iitt', |
|
| 25 | - 'imsk', |
|
| 26 | - 'mows', |
|
| 27 | - 'mthx', |
|
| 28 | - 'mthy', |
|
| 29 | - 'null', |
|
| 30 | - 'ownr', |
|
| 31 | - 'pnts', |
|
| 32 | - 'posb', |
|
| 33 | - 'posl', |
|
| 34 | - 'posr', |
|
| 35 | - 'post', |
|
| 36 | - 'posx', |
|
| 37 | - 'posy', |
|
| 38 | - 'spcs', |
|
| 39 | - 'wdth', |
|
| 40 | - '_it_', |
|
| 10 | + public static function GetTokens() { |
|
| 11 | + return array( |
|
| 12 | + //agents |
|
| 13 | + 'abba', |
|
| 14 | + 'carr', |
|
| 15 | + 'cata', |
|
| 16 | + 'clac', |
|
| 17 | + 'fltx', |
|
| 18 | + 'flty', |
|
| 19 | + 'fmly', |
|
| 20 | + 'from', |
|
| 21 | + 'gnus', |
|
| 22 | + 'held', |
|
| 23 | + 'hght', |
|
| 24 | + 'iitt', |
|
| 25 | + 'imsk', |
|
| 26 | + 'mows', |
|
| 27 | + 'mthx', |
|
| 28 | + 'mthy', |
|
| 29 | + 'null', |
|
| 30 | + 'ownr', |
|
| 31 | + 'pnts', |
|
| 32 | + 'posb', |
|
| 33 | + 'posl', |
|
| 34 | + 'posr', |
|
| 35 | + 'post', |
|
| 36 | + 'posx', |
|
| 37 | + 'posy', |
|
| 38 | + 'spcs', |
|
| 39 | + 'wdth', |
|
| 40 | + '_it_', |
|
| 41 | 41 | |
| 42 | - //camera |
|
| 43 | - 'cmrx', |
|
| 44 | - 'cmry', |
|
| 45 | - 'wndb', |
|
| 46 | - 'wndh', |
|
| 47 | - 'wndl', |
|
| 48 | - 'wndr', |
|
| 49 | - 'wndt', |
|
| 50 | - 'wndw', |
|
| 42 | + //camera |
|
| 43 | + 'cmrx', |
|
| 44 | + 'cmry', |
|
| 45 | + 'wndb', |
|
| 46 | + 'wndh', |
|
| 47 | + 'wndl', |
|
| 48 | + 'wndr', |
|
| 49 | + 'wndt', |
|
| 50 | + 'wndw', |
|
| 51 | 51 | |
| 52 | - //cd player |
|
| 53 | - '_cd_ frqh', |
|
| 54 | - '_cd_ frql', |
|
| 55 | - '_cd_ frqm', |
|
| 52 | + //cd player |
|
| 53 | + '_cd_ frqh', |
|
| 54 | + '_cd_ frql', |
|
| 55 | + '_cd_ frqm', |
|
| 56 | 56 | |
| 57 | - //compound |
|
| 58 | - 'npgs', |
|
| 57 | + //compound |
|
| 58 | + 'npgs', |
|
| 59 | 59 | |
| 60 | - //creatures |
|
| 61 | - 'attn', |
|
| 62 | - 'bvar', |
|
| 63 | - 'byit', |
|
| 64 | - 'cage', |
|
| 65 | - 'decn', |
|
| 66 | - 'dftx', |
|
| 67 | - 'dfty', |
|
| 68 | - 'drv!', |
|
| 69 | - 'expr', |
|
| 70 | - 'hhld', |
|
| 71 | - 'orgn', |
|
| 72 | - 'tage', |
|
| 73 | - 'uftx', |
|
| 74 | - 'ufty', |
|
| 60 | + //creatures |
|
| 61 | + 'attn', |
|
| 62 | + 'bvar', |
|
| 63 | + 'byit', |
|
| 64 | + 'cage', |
|
| 65 | + 'decn', |
|
| 66 | + 'dftx', |
|
| 67 | + 'dfty', |
|
| 68 | + 'drv!', |
|
| 69 | + 'expr', |
|
| 70 | + 'hhld', |
|
| 71 | + 'orgn', |
|
| 72 | + 'tage', |
|
| 73 | + 'uftx', |
|
| 74 | + 'ufty', |
|
| 75 | 75 | |
| 76 | - //debug |
|
| 77 | - 'code', |
|
| 78 | - 'codf', |
|
| 79 | - 'codg', |
|
| 80 | - 'codp', |
|
| 81 | - 'cods', |
|
| 82 | - 'paws', |
|
| 83 | - 'tack', |
|
| 84 | - 'unid', |
|
| 76 | + //debug |
|
| 77 | + 'code', |
|
| 78 | + 'codf', |
|
| 79 | + 'codg', |
|
| 80 | + 'codp', |
|
| 81 | + 'cods', |
|
| 82 | + 'paws', |
|
| 83 | + 'tack', |
|
| 84 | + 'unid', |
|
| 85 | 85 | |
| 86 | - //files |
|
| 87 | - 'innf', |
|
| 88 | - 'inni', |
|
| 89 | - 'innl', |
|
| 90 | - 'inok', |
|
| 86 | + //files |
|
| 87 | + 'innf', |
|
| 88 | + 'inni', |
|
| 89 | + 'innl', |
|
| 90 | + 'inok', |
|
| 91 | 91 | |
| 92 | - //input |
|
| 93 | - 'hotp', |
|
| 94 | - 'hots', |
|
| 95 | - 'mopx', |
|
| 96 | - 'mopy', |
|
| 97 | - 'movx', |
|
| 98 | - 'movy', |
|
| 99 | - 'down', |
|
| 100 | - 'emid', |
|
| 101 | - 'left', |
|
| 102 | - 'maph', |
|
| 103 | - 'mapw', |
|
| 104 | - 'mloc', |
|
| 105 | - 'rght', |
|
| 106 | - '_up_', |
|
| 92 | + //input |
|
| 93 | + 'hotp', |
|
| 94 | + 'hots', |
|
| 95 | + 'mopx', |
|
| 96 | + 'mopy', |
|
| 97 | + 'movx', |
|
| 98 | + 'movy', |
|
| 99 | + 'down', |
|
| 100 | + 'emid', |
|
| 101 | + 'left', |
|
| 102 | + 'maph', |
|
| 103 | + 'mapw', |
|
| 104 | + 'mloc', |
|
| 105 | + 'rght', |
|
| 106 | + '_up_', |
|
| 107 | 107 | |
| 108 | - //motion |
|
| 109 | - 'fall', |
|
| 110 | - 'movs', |
|
| 111 | - 'velx', |
|
| 112 | - 'vely', |
|
| 113 | - 'wall', |
|
| 108 | + //motion |
|
| 109 | + 'fall', |
|
| 110 | + 'movs', |
|
| 111 | + 'velx', |
|
| 112 | + 'vely', |
|
| 113 | + 'wall', |
|
| 114 | 114 | |
| 115 | - //ports |
|
| 116 | - 'prt: itot', |
|
| 117 | - 'prt: otot', |
|
| 115 | + //ports |
|
| 116 | + 'prt: itot', |
|
| 117 | + 'prt: otot', |
|
| 118 | 118 | |
| 119 | - //resources |
|
| 119 | + //resources |
|
| 120 | 120 | |
| 121 | - //scripts |
|
| 121 | + //scripts |
|
| 122 | 122 | |
| 123 | - //time |
|
| 124 | - 'date', |
|
| 125 | - 'dayt', |
|
| 126 | - 'etik', |
|
| 127 | - 'mont', |
|
| 128 | - 'msec', |
|
| 129 | - 'pace', |
|
| 130 | - 'race', |
|
| 131 | - 'rtim', |
|
| 132 | - 'sean', |
|
| 133 | - 'time', |
|
| 134 | - 'wtik', |
|
| 135 | - 'year', |
|
| 123 | + //time |
|
| 124 | + 'date', |
|
| 125 | + 'dayt', |
|
| 126 | + 'etik', |
|
| 127 | + 'mont', |
|
| 128 | + 'msec', |
|
| 129 | + 'pace', |
|
| 130 | + 'race', |
|
| 131 | + 'rtim', |
|
| 132 | + 'sean', |
|
| 133 | + 'time', |
|
| 134 | + 'wtik', |
|
| 135 | + 'year', |
|
| 136 | 136 | |
| 137 | - //variables |
|
| 138 | - 'gnam', |
|
| 139 | - 'modu', |
|
| 140 | - 'eame', |
|
| 141 | - 'name', |
|
| 142 | - 'game', |
|
| 143 | - 'ufos', |
|
| 144 | - 'vmjr', |
|
| 145 | - 'vmnr', |
|
| 146 | - '_p1_', |
|
| 147 | - '_p2_', |
|
| 148 | - 'null', |
|
| 137 | + //variables |
|
| 138 | + 'gnam', |
|
| 139 | + 'modu', |
|
| 140 | + 'eame', |
|
| 141 | + 'name', |
|
| 142 | + 'game', |
|
| 143 | + 'ufos', |
|
| 144 | + 'vmjr', |
|
| 145 | + 'vmnr', |
|
| 146 | + '_p1_', |
|
| 147 | + '_p2_', |
|
| 148 | + 'null', |
|
| 149 | 149 | |
| 150 | - //vehicles |
|
| 151 | - 'cabb', |
|
| 152 | - 'cabl', |
|
| 153 | - 'cabr', |
|
| 154 | - 'cabt', |
|
| 150 | + //vehicles |
|
| 151 | + 'cabb', |
|
| 152 | + 'cabl', |
|
| 153 | + 'cabr', |
|
| 154 | + 'cabt', |
|
| 155 | 155 | |
| 156 | - //world |
|
| 157 | - 'nwld', |
|
| 158 | - 'wnam', |
|
| 159 | - 'wuid', |
|
| 156 | + //world |
|
| 157 | + 'nwld', |
|
| 158 | + 'wnam', |
|
| 159 | + 'wuid', |
|
| 160 | 160 | |
| 161 | - //net |
|
| 162 | - 'net: erra', |
|
| 163 | - 'net: host', |
|
| 164 | - 'net: rawe', |
|
| 165 | - 'net: user', |
|
| 166 | - 'net: what' |
|
| 167 | - ); |
|
| 168 | - } |
|
| 161 | + //net |
|
| 162 | + 'net: erra', |
|
| 163 | + 'net: host', |
|
| 164 | + 'net: rawe', |
|
| 165 | + 'net: user', |
|
| 166 | + 'net: what' |
|
| 167 | + ); |
|
| 168 | + } |
|
| 169 | 169 | } |
| 170 | 170 | |
| 171 | 171 | /// @endcond |
@@ -4,444 +4,444 @@ |
||
| 4 | 4 | /// @brief DS CAOS commands dictionary |
| 5 | 5 | class DSCAOSCommands { |
| 6 | 6 | /// @brief Returns an array of tokens. |
| 7 | - public static function GetTokens() { |
|
| 8 | - return array( |
|
| 9 | - 'alph', |
|
| 10 | - 'anim', |
|
| 11 | - 'amms', |
|
| 12 | - 'call', |
|
| 13 | - 'cati', |
|
| 14 | - 'cato', |
|
| 15 | - 'catx', |
|
| 16 | - 'core', |
|
| 17 | - 'dcor', |
|
| 18 | - 'disq', |
|
| 19 | - 'drop', |
|
| 20 | - 'dsee', |
|
| 21 | - 'frat', |
|
| 22 | - 'gait', |
|
| 23 | - 'kill', |
|
| 24 | - 'mesg writ', |
|
| 25 | - 'mesg wrt+', |
|
| 26 | - 'ncls', |
|
| 27 | - 'nohh', |
|
| 28 | - 'pcls', |
|
| 29 | - 'puhl', |
|
| 30 | - 'pupt', |
|
| 31 | - 'rtar', |
|
| 32 | - 'seee', |
|
| 33 | - 'show', |
|
| 34 | - 'star', |
|
| 35 | - 'tcor', |
|
| 36 | - 'tino', |
|
| 37 | - 'tint', |
|
| 38 | - 'totl', |
|
| 39 | - 'touc', |
|
| 40 | - 'tran', |
|
| 41 | - 'ttar', |
|
| 42 | - 'twin', |
|
| 43 | - 'ucln', |
|
| 44 | - 'visi', |
|
| 45 | - 'wild', |
|
| 7 | + public static function GetTokens() { |
|
| 8 | + return array( |
|
| 9 | + 'alph', |
|
| 10 | + 'anim', |
|
| 11 | + 'amms', |
|
| 12 | + 'call', |
|
| 13 | + 'cati', |
|
| 14 | + 'cato', |
|
| 15 | + 'catx', |
|
| 16 | + 'core', |
|
| 17 | + 'dcor', |
|
| 18 | + 'disq', |
|
| 19 | + 'drop', |
|
| 20 | + 'dsee', |
|
| 21 | + 'frat', |
|
| 22 | + 'gait', |
|
| 23 | + 'kill', |
|
| 24 | + 'mesg writ', |
|
| 25 | + 'mesg wrt+', |
|
| 26 | + 'ncls', |
|
| 27 | + 'nohh', |
|
| 28 | + 'pcls', |
|
| 29 | + 'puhl', |
|
| 30 | + 'pupt', |
|
| 31 | + 'rtar', |
|
| 32 | + 'seee', |
|
| 33 | + 'show', |
|
| 34 | + 'star', |
|
| 35 | + 'tcor', |
|
| 36 | + 'tino', |
|
| 37 | + 'tint', |
|
| 38 | + 'totl', |
|
| 39 | + 'touc', |
|
| 40 | + 'tran', |
|
| 41 | + 'ttar', |
|
| 42 | + 'twin', |
|
| 43 | + 'ucln', |
|
| 44 | + 'visi', |
|
| 45 | + 'wild', |
|
| 46 | 46 | |
| 47 | - //brain |
|
| 48 | - 'adin', |
|
| 49 | - 'brn: dmpb', |
|
| 50 | - 'brn: dmpd', |
|
| 51 | - 'brn: dmpl', |
|
| 52 | - 'brn: dmpn', |
|
| 53 | - 'brn: dmpt', |
|
| 54 | - 'brn: setd', |
|
| 55 | - 'brn: setl', |
|
| 56 | - 'brn: setn', |
|
| 57 | - 'brn: sett', |
|
| 58 | - 'doin', |
|
| 47 | + //brain |
|
| 48 | + 'adin', |
|
| 49 | + 'brn: dmpb', |
|
| 50 | + 'brn: dmpd', |
|
| 51 | + 'brn: dmpl', |
|
| 52 | + 'brn: dmpn', |
|
| 53 | + 'brn: dmpt', |
|
| 54 | + 'brn: setd', |
|
| 55 | + 'brn: setl', |
|
| 56 | + 'brn: setn', |
|
| 57 | + 'brn: sett', |
|
| 58 | + 'doin', |
|
| 59 | 59 | |
| 60 | - //camera |
|
| 61 | - 'bkgd', |
|
| 62 | - 'brmi', |
|
| 63 | - 'cmra', |
|
| 64 | - 'cmrp', |
|
| 65 | - 'cmrt', |
|
| 66 | - 'frsh', |
|
| 67 | - 'line', |
|
| 68 | - 'loft', |
|
| 69 | - 'scam', |
|
| 70 | - 'snap', |
|
| 71 | - 'snax', |
|
| 72 | - 'zoom', |
|
| 60 | + //camera |
|
| 61 | + 'bkgd', |
|
| 62 | + 'brmi', |
|
| 63 | + 'cmra', |
|
| 64 | + 'cmrp', |
|
| 65 | + 'cmrt', |
|
| 66 | + 'frsh', |
|
| 67 | + 'line', |
|
| 68 | + 'loft', |
|
| 69 | + 'scam', |
|
| 70 | + 'snap', |
|
| 71 | + 'snax', |
|
| 72 | + 'zoom', |
|
| 73 | 73 | |
| 74 | - //cd player |
|
| 75 | - '_cd_ ejct', |
|
| 76 | - '_cd_ init', |
|
| 77 | - '_cd_ paws', |
|
| 78 | - '_cd_ play', |
|
| 79 | - '_cd_ shut', |
|
| 80 | - '_cd_ stop', |
|
| 74 | + //cd player |
|
| 75 | + '_cd_ ejct', |
|
| 76 | + '_cd_ init', |
|
| 77 | + '_cd_ paws', |
|
| 78 | + '_cd_ play', |
|
| 79 | + '_cd_ shut', |
|
| 80 | + '_cd_ stop', |
|
| 81 | 81 | |
| 82 | - //compounds |
|
| 83 | - 'fcus', |
|
| 84 | - 'frmt', |
|
| 85 | - 'grpl', |
|
| 86 | - 'grpv', |
|
| 87 | - 'part', |
|
| 88 | - 'pat: butt', |
|
| 89 | - 'pat: cmra', |
|
| 90 | - 'pat: dull', |
|
| 91 | - 'pat: fixd', |
|
| 92 | - 'pat: grph', |
|
| 93 | - 'pat: kill', |
|
| 94 | - 'pat: move', |
|
| 95 | - 'pat: text', |
|
| 96 | - 'pnxt', |
|
| 82 | + //compounds |
|
| 83 | + 'fcus', |
|
| 84 | + 'frmt', |
|
| 85 | + 'grpl', |
|
| 86 | + 'grpv', |
|
| 87 | + 'part', |
|
| 88 | + 'pat: butt', |
|
| 89 | + 'pat: cmra', |
|
| 90 | + 'pat: dull', |
|
| 91 | + 'pat: fixd', |
|
| 92 | + 'pat: grph', |
|
| 93 | + 'pat: kill', |
|
| 94 | + 'pat: move', |
|
| 95 | + 'pat: text', |
|
| 96 | + 'pnxt', |
|
| 97 | 97 | |
| 98 | - //creation |
|
| 99 | - 'new: simp', |
|
| 100 | - 'new: comp', |
|
| 101 | - 'new: crag', |
|
| 102 | - 'new: crea', |
|
| 103 | - 'new: vhcl', |
|
| 104 | - 'newc', |
|
| 98 | + //creation |
|
| 99 | + 'new: simp', |
|
| 100 | + 'new: comp', |
|
| 101 | + 'new: crag', |
|
| 102 | + 'new: crea', |
|
| 103 | + 'new: vhcl', |
|
| 104 | + 'newc', |
|
| 105 | 105 | |
| 106 | - //creatures |
|
| 107 | - 'ages', |
|
| 108 | - 'appr', |
|
| 109 | - 'body', |
|
| 110 | - 'boot', |
|
| 111 | - 'born', |
|
| 112 | - 'calg', |
|
| 113 | - 'chem', |
|
| 114 | - 'crea', |
|
| 115 | - 'done', |
|
| 116 | - 'driv', |
|
| 117 | - 'forf', |
|
| 118 | - 'hair', |
|
| 119 | - 'injr', |
|
| 120 | - 'like', |
|
| 121 | - 'limb', |
|
| 122 | - 'loci', |
|
| 123 | - 'ltcy', |
|
| 124 | - 'mate', |
|
| 125 | - 'mvft', |
|
| 126 | - 'nude', |
|
| 127 | - 'ordr shou', |
|
| 128 | - 'ordr sign', |
|
| 129 | - 'ordr tact', |
|
| 130 | - 'ordr writ', |
|
| 131 | - 'orgf', |
|
| 132 | - 'orgi', |
|
| 133 | - 'plmd', |
|
| 134 | - 'plmu', |
|
| 135 | - 'sayn', |
|
| 136 | - 'seen', |
|
| 137 | - 'soul', |
|
| 138 | - 'spnl', |
|
| 139 | - 'step', |
|
| 140 | - 'stim shou', |
|
| 141 | - 'stim sign', |
|
| 142 | - 'stim tact', |
|
| 143 | - 'stim writ', |
|
| 144 | - 'sway shou', |
|
| 145 | - 'sway sign', |
|
| 146 | - 'sway tact', |
|
| 147 | - 'sway writ', |
|
| 148 | - 'touc', |
|
| 149 | - 'urge shou', |
|
| 150 | - 'urge sign', |
|
| 151 | - 'urge tact', |
|
| 152 | - 'urge writ', |
|
| 153 | - 'vocb', |
|
| 154 | - 'walk', |
|
| 155 | - 'wear', |
|
| 106 | + //creatures |
|
| 107 | + 'ages', |
|
| 108 | + 'appr', |
|
| 109 | + 'body', |
|
| 110 | + 'boot', |
|
| 111 | + 'born', |
|
| 112 | + 'calg', |
|
| 113 | + 'chem', |
|
| 114 | + 'crea', |
|
| 115 | + 'done', |
|
| 116 | + 'driv', |
|
| 117 | + 'forf', |
|
| 118 | + 'hair', |
|
| 119 | + 'injr', |
|
| 120 | + 'like', |
|
| 121 | + 'limb', |
|
| 122 | + 'loci', |
|
| 123 | + 'ltcy', |
|
| 124 | + 'mate', |
|
| 125 | + 'mvft', |
|
| 126 | + 'nude', |
|
| 127 | + 'ordr shou', |
|
| 128 | + 'ordr sign', |
|
| 129 | + 'ordr tact', |
|
| 130 | + 'ordr writ', |
|
| 131 | + 'orgf', |
|
| 132 | + 'orgi', |
|
| 133 | + 'plmd', |
|
| 134 | + 'plmu', |
|
| 135 | + 'sayn', |
|
| 136 | + 'seen', |
|
| 137 | + 'soul', |
|
| 138 | + 'spnl', |
|
| 139 | + 'step', |
|
| 140 | + 'stim shou', |
|
| 141 | + 'stim sign', |
|
| 142 | + 'stim tact', |
|
| 143 | + 'stim writ', |
|
| 144 | + 'sway shou', |
|
| 145 | + 'sway sign', |
|
| 146 | + 'sway tact', |
|
| 147 | + 'sway writ', |
|
| 148 | + 'touc', |
|
| 149 | + 'urge shou', |
|
| 150 | + 'urge sign', |
|
| 151 | + 'urge tact', |
|
| 152 | + 'urge writ', |
|
| 153 | + 'vocb', |
|
| 154 | + 'walk', |
|
| 155 | + 'wear', |
|
| 156 | 156 | |
| 157 | - //debug |
|
| 158 | - 'agnt', |
|
| 159 | - 'apro', |
|
| 160 | - 'bang', |
|
| 161 | - 'dbg#', |
|
| 162 | - 'dbg: asrt', |
|
| 163 | - 'dbg: cpro', |
|
| 164 | - 'dbg: flsh', |
|
| 165 | - 'dbg: html', |
|
| 166 | - 'dbg: outs', |
|
| 167 | - 'dbg: outv', |
|
| 168 | - 'dbg: paws', |
|
| 169 | - 'dbg: play', |
|
| 170 | - 'dbg: poll', |
|
| 171 | - 'dbg: prof', |
|
| 172 | - 'dbg: tack', |
|
| 173 | - 'dbg: tock', |
|
| 174 | - 'dbg: wtik', |
|
| 175 | - 'dbga', |
|
| 176 | - 'head', |
|
| 177 | - 'help', |
|
| 178 | - 'mann', |
|
| 179 | - 'memx', |
|
| 157 | + //debug |
|
| 158 | + 'agnt', |
|
| 159 | + 'apro', |
|
| 160 | + 'bang', |
|
| 161 | + 'dbg#', |
|
| 162 | + 'dbg: asrt', |
|
| 163 | + 'dbg: cpro', |
|
| 164 | + 'dbg: flsh', |
|
| 165 | + 'dbg: html', |
|
| 166 | + 'dbg: outs', |
|
| 167 | + 'dbg: outv', |
|
| 168 | + 'dbg: paws', |
|
| 169 | + 'dbg: play', |
|
| 170 | + 'dbg: poll', |
|
| 171 | + 'dbg: prof', |
|
| 172 | + 'dbg: tack', |
|
| 173 | + 'dbg: tock', |
|
| 174 | + 'dbg: wtik', |
|
| 175 | + 'dbga', |
|
| 176 | + 'head', |
|
| 177 | + 'help', |
|
| 178 | + 'mann', |
|
| 179 | + 'memx', |
|
| 180 | 180 | |
| 181 | - //files |
|
| 182 | - 'file glob', |
|
| 183 | - 'file iclo', |
|
| 184 | - 'file iope', |
|
| 185 | - 'file jdel', |
|
| 186 | - 'file oclo', |
|
| 187 | - 'file oflu', |
|
| 188 | - 'file oope', |
|
| 189 | - 'fvwm', |
|
| 190 | - 'outs', |
|
| 191 | - 'outv', |
|
| 192 | - 'outx', |
|
| 193 | - 'webb', |
|
| 181 | + //files |
|
| 182 | + 'file glob', |
|
| 183 | + 'file iclo', |
|
| 184 | + 'file iope', |
|
| 185 | + 'file jdel', |
|
| 186 | + 'file oclo', |
|
| 187 | + 'file oflu', |
|
| 188 | + 'file oope', |
|
| 189 | + 'fvwm', |
|
| 190 | + 'outs', |
|
| 191 | + 'outv', |
|
| 192 | + 'outx', |
|
| 193 | + 'webb', |
|
| 194 | 194 | |
| 195 | - //genetics |
|
| 196 | - 'gene clon', |
|
| 197 | - 'gene cros', |
|
| 198 | - 'gene kill', |
|
| 199 | - 'gene load', |
|
| 200 | - 'gene move', |
|
| 201 | - 'gtos', |
|
| 202 | - 'mtoa', |
|
| 203 | - 'mtoc', |
|
| 195 | + //genetics |
|
| 196 | + 'gene clon', |
|
| 197 | + 'gene cros', |
|
| 198 | + 'gene kill', |
|
| 199 | + 'gene load', |
|
| 200 | + 'gene move', |
|
| 201 | + 'gtos', |
|
| 202 | + 'mtoa', |
|
| 203 | + 'mtoc', |
|
| 204 | 204 | |
| 205 | - //history |
|
| 206 | - 'hist cage', |
|
| 207 | - 'hist coun', |
|
| 208 | - 'hist cros', |
|
| 209 | - 'hist evnt', |
|
| 210 | - 'hist find', |
|
| 211 | - 'hist finr', |
|
| 212 | - 'hist foto', |
|
| 213 | - 'hist gend', |
|
| 214 | - 'hist gnus', |
|
| 215 | - 'hist mon1', |
|
| 216 | - 'hist mon2', |
|
| 217 | - 'hist mute', |
|
| 218 | - 'hist name', |
|
| 219 | - 'hist netu', |
|
| 220 | - 'hist next', |
|
| 221 | - 'hist prev', |
|
| 222 | - 'hist rtim', |
|
| 223 | - 'hist tage', |
|
| 224 | - 'hist type', |
|
| 225 | - 'hist utxt', |
|
| 226 | - 'hist vari', |
|
| 227 | - 'hist wipe', |
|
| 228 | - 'hist wnam', |
|
| 229 | - 'hist wtik', |
|
| 230 | - 'hist wuid', |
|
| 231 | - 'ooww', |
|
| 205 | + //history |
|
| 206 | + 'hist cage', |
|
| 207 | + 'hist coun', |
|
| 208 | + 'hist cros', |
|
| 209 | + 'hist evnt', |
|
| 210 | + 'hist find', |
|
| 211 | + 'hist finr', |
|
| 212 | + 'hist foto', |
|
| 213 | + 'hist gend', |
|
| 214 | + 'hist gnus', |
|
| 215 | + 'hist mon1', |
|
| 216 | + 'hist mon2', |
|
| 217 | + 'hist mute', |
|
| 218 | + 'hist name', |
|
| 219 | + 'hist netu', |
|
| 220 | + 'hist next', |
|
| 221 | + 'hist prev', |
|
| 222 | + 'hist rtim', |
|
| 223 | + 'hist tage', |
|
| 224 | + 'hist type', |
|
| 225 | + 'hist utxt', |
|
| 226 | + 'hist vari', |
|
| 227 | + 'hist wipe', |
|
| 228 | + 'hist wnam', |
|
| 229 | + 'hist wtik', |
|
| 230 | + 'hist wuid', |
|
| 231 | + 'ooww', |
|
| 232 | 232 | |
| 233 | - //input |
|
| 234 | - 'clac', |
|
| 235 | - 'clik', |
|
| 236 | - 'imsk', |
|
| 237 | - 'keyd', |
|
| 238 | - 'mous', |
|
| 239 | - 'tran', |
|
| 233 | + //input |
|
| 234 | + 'clac', |
|
| 235 | + 'clik', |
|
| 236 | + 'imsk', |
|
| 237 | + 'keyd', |
|
| 238 | + 'mous', |
|
| 239 | + 'tran', |
|
| 240 | 240 | |
| 241 | - //map |
|
| 242 | - 'addb', |
|
| 243 | - 'addm', |
|
| 244 | - 'addr', |
|
| 245 | - 'altr', |
|
| 246 | - 'bkds', |
|
| 247 | - 'cacl', |
|
| 248 | - 'calc', |
|
| 249 | - 'delm', |
|
| 250 | - 'delr', |
|
| 251 | - 'dmap', |
|
| 252 | - 'doca', |
|
| 253 | - 'door', |
|
| 254 | - 'emit', |
|
| 255 | - 'erid', |
|
| 256 | - 'gmap', |
|
| 257 | - 'grap', |
|
| 258 | - 'grid', |
|
| 259 | - 'hirp', |
|
| 260 | - 'link', |
|
| 261 | - 'lorp', |
|
| 262 | - 'mapd', |
|
| 263 | - 'mapk', |
|
| 264 | - 'prop', |
|
| 265 | - 'rate', |
|
| 266 | - 'rloc', |
|
| 267 | - 'room', |
|
| 268 | - 'rtyp', |
|
| 269 | - 'torx', |
|
| 270 | - 'tory', |
|
| 241 | + //map |
|
| 242 | + 'addb', |
|
| 243 | + 'addm', |
|
| 244 | + 'addr', |
|
| 245 | + 'altr', |
|
| 246 | + 'bkds', |
|
| 247 | + 'cacl', |
|
| 248 | + 'calc', |
|
| 249 | + 'delm', |
|
| 250 | + 'delr', |
|
| 251 | + 'dmap', |
|
| 252 | + 'doca', |
|
| 253 | + 'door', |
|
| 254 | + 'emit', |
|
| 255 | + 'erid', |
|
| 256 | + 'gmap', |
|
| 257 | + 'grap', |
|
| 258 | + 'grid', |
|
| 259 | + 'hirp', |
|
| 260 | + 'link', |
|
| 261 | + 'lorp', |
|
| 262 | + 'mapd', |
|
| 263 | + 'mapk', |
|
| 264 | + 'prop', |
|
| 265 | + 'rate', |
|
| 266 | + 'rloc', |
|
| 267 | + 'room', |
|
| 268 | + 'rtyp', |
|
| 269 | + 'torx', |
|
| 270 | + 'tory', |
|
| 271 | 271 | |
| 272 | - //motion |
|
| 273 | - 'angl', |
|
| 274 | - 'flto', |
|
| 275 | - 'frel', |
|
| 276 | - 'mvby', |
|
| 277 | - 'mvsf', |
|
| 278 | - 'mvto', |
|
| 279 | - 'obst', |
|
| 280 | - 'relx', |
|
| 281 | - 'rely', |
|
| 282 | - 'rotn', |
|
| 283 | - 'tmvb', |
|
| 284 | - 'tmvf', |
|
| 285 | - 'tmvt', |
|
| 286 | - 'vecx', |
|
| 287 | - 'vecy', |
|
| 288 | - 'velo', |
|
| 272 | + //motion |
|
| 273 | + 'angl', |
|
| 274 | + 'flto', |
|
| 275 | + 'frel', |
|
| 276 | + 'mvby', |
|
| 277 | + 'mvsf', |
|
| 278 | + 'mvto', |
|
| 279 | + 'obst', |
|
| 280 | + 'relx', |
|
| 281 | + 'rely', |
|
| 282 | + 'rotn', |
|
| 283 | + 'tmvb', |
|
| 284 | + 'tmvf', |
|
| 285 | + 'tmvt', |
|
| 286 | + 'vecx', |
|
| 287 | + 'vecy', |
|
| 288 | + 'velo', |
|
| 289 | 289 | |
| 290 | - //ports |
|
| 291 | - 'prt: bang', |
|
| 292 | - 'prt: frma', |
|
| 293 | - 'prt: from', |
|
| 294 | - 'prt: inew', |
|
| 295 | - 'prt: izap', |
|
| 296 | - 'prt: join', |
|
| 297 | - 'prt: kraf', |
|
| 298 | - 'prt: name', |
|
| 299 | - 'prt: onew', |
|
| 300 | - 'prt: ozap', |
|
| 301 | - 'prt: send', |
|
| 290 | + //ports |
|
| 291 | + 'prt: bang', |
|
| 292 | + 'prt: frma', |
|
| 293 | + 'prt: from', |
|
| 294 | + 'prt: inew', |
|
| 295 | + 'prt: izap', |
|
| 296 | + 'prt: join', |
|
| 297 | + 'prt: kraf', |
|
| 298 | + 'prt: name', |
|
| 299 | + 'prt: onew', |
|
| 300 | + 'prt: ozap', |
|
| 301 | + 'prt: send', |
|
| 302 | 302 | |
| 303 | - //resources |
|
| 304 | - 'pray agti', |
|
| 305 | - 'pray agts', |
|
| 306 | - 'pray back', |
|
| 307 | - 'pray coun', |
|
| 308 | - 'pray deps', |
|
| 309 | - 'pray expo', |
|
| 310 | - 'pray file', |
|
| 311 | - 'pray fore', |
|
| 312 | - 'pray garb', |
|
| 313 | - 'pray impo', |
|
| 314 | - 'pray injt', |
|
| 315 | - 'pray kill', |
|
| 316 | - 'pray make', |
|
| 317 | - 'pray next', |
|
| 318 | - 'pray prev', |
|
| 319 | - 'pray refr', |
|
| 320 | - 'pray test', |
|
| 303 | + //resources |
|
| 304 | + 'pray agti', |
|
| 305 | + 'pray agts', |
|
| 306 | + 'pray back', |
|
| 307 | + 'pray coun', |
|
| 308 | + 'pray deps', |
|
| 309 | + 'pray expo', |
|
| 310 | + 'pray file', |
|
| 311 | + 'pray fore', |
|
| 312 | + 'pray garb', |
|
| 313 | + 'pray impo', |
|
| 314 | + 'pray injt', |
|
| 315 | + 'pray kill', |
|
| 316 | + 'pray make', |
|
| 317 | + 'pray next', |
|
| 318 | + 'pray prev', |
|
| 319 | + 'pray refr', |
|
| 320 | + 'pray test', |
|
| 321 | 321 | |
| 322 | - //caos |
|
| 323 | - 'caos', |
|
| 324 | - 'gids fmly', |
|
| 325 | - 'gids gnus', |
|
| 326 | - 'gids root', |
|
| 327 | - 'inst', |
|
| 328 | - 'ject', |
|
| 329 | - 'lock', |
|
| 330 | - 'scrx', |
|
| 331 | - 'slow', |
|
| 332 | - 'sorc', |
|
| 333 | - 'sorq', |
|
| 334 | - 'stop', |
|
| 335 | - 'stpt', |
|
| 336 | - 'unlk', |
|
| 337 | - 'wait', |
|
| 322 | + //caos |
|
| 323 | + 'caos', |
|
| 324 | + 'gids fmly', |
|
| 325 | + 'gids gnus', |
|
| 326 | + 'gids root', |
|
| 327 | + 'inst', |
|
| 328 | + 'ject', |
|
| 329 | + 'lock', |
|
| 330 | + 'scrx', |
|
| 331 | + 'slow', |
|
| 332 | + 'sorc', |
|
| 333 | + 'sorq', |
|
| 334 | + 'stop', |
|
| 335 | + 'stpt', |
|
| 336 | + 'unlk', |
|
| 337 | + 'wait', |
|
| 338 | 338 | |
| 339 | - //sounds |
|
| 340 | - 'fade', |
|
| 341 | - 'mclr', |
|
| 342 | - 'midi', |
|
| 343 | - 'mmsc', |
|
| 344 | - 'mute', |
|
| 345 | - 'rclr', |
|
| 346 | - 'rmsc', |
|
| 347 | - 'sezz', |
|
| 348 | - 'sndc', |
|
| 349 | - 'snde', |
|
| 350 | - 'sdnl', |
|
| 351 | - 'sndq', |
|
| 352 | - 'stpc', |
|
| 353 | - 'strk', |
|
| 354 | - 'voic', |
|
| 355 | - 'volm', |
|
| 339 | + //sounds |
|
| 340 | + 'fade', |
|
| 341 | + 'mclr', |
|
| 342 | + 'midi', |
|
| 343 | + 'mmsc', |
|
| 344 | + 'mute', |
|
| 345 | + 'rclr', |
|
| 346 | + 'rmsc', |
|
| 347 | + 'sezz', |
|
| 348 | + 'sndc', |
|
| 349 | + 'snde', |
|
| 350 | + 'sdnl', |
|
| 351 | + 'sndq', |
|
| 352 | + 'stpc', |
|
| 353 | + 'strk', |
|
| 354 | + 'voic', |
|
| 355 | + 'volm', |
|
| 356 | 356 | |
| 357 | - //time |
|
| 358 | - 'hist date', |
|
| 359 | - 'hist sean', |
|
| 360 | - 'hist time', |
|
| 361 | - 'hist year', |
|
| 362 | - 'rtif', |
|
| 363 | - 'scol', |
|
| 364 | - 'wolf', |
|
| 357 | + //time |
|
| 358 | + 'hist date', |
|
| 359 | + 'hist sean', |
|
| 360 | + 'hist time', |
|
| 361 | + 'hist year', |
|
| 362 | + 'rtif', |
|
| 363 | + 'scol', |
|
| 364 | + 'wolf', |
|
| 365 | 365 | |
| 366 | - //variables |
|
| 367 | - 'absv', |
|
| 368 | - 'acos', |
|
| 369 | - 'adds', |
|
| 370 | - 'addv', |
|
| 371 | - 'andv', |
|
| 372 | - 'asin', |
|
| 373 | - 'atan', |
|
| 374 | - 'avar', |
|
| 375 | - 'char', |
|
| 376 | - 'cos_', |
|
| 377 | - 'dele', |
|
| 378 | - 'delg', |
|
| 379 | - 'deln', |
|
| 380 | - 'divv', |
|
| 381 | - 'eamn', |
|
| 382 | - 'ftoi', |
|
| 383 | - 'gamn', |
|
| 384 | - 'itof', |
|
| 385 | - 'lowa', |
|
| 386 | - 'modv', |
|
| 387 | - 'mulv', |
|
| 388 | - 'namn', |
|
| 389 | - 'negv', |
|
| 390 | - 'notv', |
|
| 391 | - 'orrv', |
|
| 392 | - 'rand', |
|
| 393 | - 'read', |
|
| 394 | - 'reaf', |
|
| 395 | - 'rean', |
|
| 396 | - 'reaq', |
|
| 397 | - 'seta', |
|
| 398 | - 'sets', |
|
| 399 | - 'setv', |
|
| 400 | - 'sins', |
|
| 401 | - 'sin_', |
|
| 402 | - 'sqrt', |
|
| 403 | - 'stof', |
|
| 404 | - 'stoi', |
|
| 405 | - 'strl', |
|
| 406 | - 'subs', |
|
| 407 | - 'subv', |
|
| 408 | - 'tan_', |
|
| 409 | - 'type', |
|
| 410 | - 'uppa', |
|
| 411 | - 'vtos', |
|
| 366 | + //variables |
|
| 367 | + 'absv', |
|
| 368 | + 'acos', |
|
| 369 | + 'adds', |
|
| 370 | + 'addv', |
|
| 371 | + 'andv', |
|
| 372 | + 'asin', |
|
| 373 | + 'atan', |
|
| 374 | + 'avar', |
|
| 375 | + 'char', |
|
| 376 | + 'cos_', |
|
| 377 | + 'dele', |
|
| 378 | + 'delg', |
|
| 379 | + 'deln', |
|
| 380 | + 'divv', |
|
| 381 | + 'eamn', |
|
| 382 | + 'ftoi', |
|
| 383 | + 'gamn', |
|
| 384 | + 'itof', |
|
| 385 | + 'lowa', |
|
| 386 | + 'modv', |
|
| 387 | + 'mulv', |
|
| 388 | + 'namn', |
|
| 389 | + 'negv', |
|
| 390 | + 'notv', |
|
| 391 | + 'orrv', |
|
| 392 | + 'rand', |
|
| 393 | + 'read', |
|
| 394 | + 'reaf', |
|
| 395 | + 'rean', |
|
| 396 | + 'reaq', |
|
| 397 | + 'seta', |
|
| 398 | + 'sets', |
|
| 399 | + 'setv', |
|
| 400 | + 'sins', |
|
| 401 | + 'sin_', |
|
| 402 | + 'sqrt', |
|
| 403 | + 'stof', |
|
| 404 | + 'stoi', |
|
| 405 | + 'strl', |
|
| 406 | + 'subs', |
|
| 407 | + 'subv', |
|
| 408 | + 'tan_', |
|
| 409 | + 'type', |
|
| 410 | + 'uppa', |
|
| 411 | + 'vtos', |
|
| 412 | 412 | |
| 413 | - //vehicles |
|
| 414 | - 'cabn', |
|
| 415 | - 'cabw', |
|
| 416 | - 'dpas', |
|
| 417 | - 'gpas', |
|
| 418 | - 'rpas', |
|
| 419 | - 'spas', |
|
| 420 | - 'psed', |
|
| 421 | - 'quit', |
|
| 422 | - 'rgam', |
|
| 423 | - 'save', |
|
| 424 | - 'tntw', |
|
| 425 | - 'wnti', |
|
| 426 | - 'wrld', |
|
| 427 | - 'wtnt', |
|
| 413 | + //vehicles |
|
| 414 | + 'cabn', |
|
| 415 | + 'cabw', |
|
| 416 | + 'dpas', |
|
| 417 | + 'gpas', |
|
| 418 | + 'rpas', |
|
| 419 | + 'spas', |
|
| 420 | + 'psed', |
|
| 421 | + 'quit', |
|
| 422 | + 'rgam', |
|
| 423 | + 'save', |
|
| 424 | + 'tntw', |
|
| 425 | + 'wnti', |
|
| 426 | + 'wrld', |
|
| 427 | + 'wtnt', |
|
| 428 | 428 | |
| 429 | - //netbabel |
|
| 430 | - 'net: expo', |
|
| 431 | - 'net: from', |
|
| 432 | - 'net: head', |
|
| 433 | - 'net: hear', |
|
| 434 | - 'net: ruso', |
|
| 435 | - 'net: stat', |
|
| 436 | - 'net: ulin', |
|
| 437 | - 'net: unik', |
|
| 438 | - 'net: whod', |
|
| 439 | - 'net: whof', |
|
| 440 | - 'net: whon', |
|
| 441 | - 'net: whoz', |
|
| 442 | - 'net: writ', |
|
| 443 | - ); |
|
| 444 | - } |
|
| 429 | + //netbabel |
|
| 430 | + 'net: expo', |
|
| 431 | + 'net: from', |
|
| 432 | + 'net: head', |
|
| 433 | + 'net: hear', |
|
| 434 | + 'net: ruso', |
|
| 435 | + 'net: stat', |
|
| 436 | + 'net: ulin', |
|
| 437 | + 'net: unik', |
|
| 438 | + 'net: whod', |
|
| 439 | + 'net: whof', |
|
| 440 | + 'net: whon', |
|
| 441 | + 'net: whoz', |
|
| 442 | + 'net: writ', |
|
| 443 | + ); |
|
| 444 | + } |
|
| 445 | 445 | } |
| 446 | 446 | |
| 447 | 447 | /// @endcond |