| 100 | | command = m_commands[byte]; |
|---|
| 101 | | if (command === null) { |
|---|
| 102 | | if (byte & 0x80) { |
|---|
| 103 | | command = m_commands[LineToCommand.ID]; |
|---|
| 104 | | LineToCommand(command).compressedValue = byte; |
|---|
| 105 | | } |
|---|
| 106 | | else if (byte & 0x40) { |
|---|
| 107 | | command = m_commands[MoveToCommand.ID]; |
|---|
| 108 | | MoveToCommand(command).compressedValue = byte; |
|---|
| 109 | | } |
|---|
| 110 | | else { |
|---|
| | 100 | if (byte & 0x80) { |
|---|
| | 101 | command = m_commands[LineToCommand.ID]; |
|---|
| | 102 | LineToCommand(command).compressedValue = byte; |
|---|
| | 103 | } |
|---|
| | 104 | else if (byte & 0x40) { |
|---|
| | 105 | command = m_commands[MoveToCommand.ID]; |
|---|
| | 106 | MoveToCommand(command).compressedValue = byte; |
|---|
| | 107 | } |
|---|
| | 108 | else { |
|---|
| | 109 | command = m_commands[byte]; |
|---|
| | 110 | if (command === null) { |
|---|
| 152 | | var command:ICommand = m_commands[byte]; |
|---|
| 153 | | if (command === null) { |
|---|
| 154 | | if (byte & 0x80) { |
|---|
| 155 | | command = m_commands[LineToCommand.ID]; |
|---|
| 156 | | LineToCommand(command).compressedValue = byte; |
|---|
| 157 | | } |
|---|
| 158 | | else if (byte & 0x40) { |
|---|
| 159 | | command = m_commands[MoveToCommand.ID]; |
|---|
| 160 | | MoveToCommand(command).compressedValue = byte; |
|---|
| 161 | | } |
|---|
| 162 | | else { |
|---|
| | 152 | if (byte & 0x80) { |
|---|
| | 153 | command = m_commands[LineToCommand.ID]; |
|---|
| | 154 | LineToCommand(command).compressedValue = byte; |
|---|
| | 155 | } |
|---|
| | 156 | else if (byte & 0x40) { |
|---|
| | 157 | command = m_commands[MoveToCommand.ID]; |
|---|
| | 158 | MoveToCommand(command).compressedValue = byte; |
|---|
| | 159 | } |
|---|
| | 160 | else { |
|---|
| | 161 | var command:ICommand = m_commands[byte]; |
|---|
| | 162 | if (command === null) { |
|---|