SendCharToOutput() private method

Sends a single character to the output system (other than IOSystem.Filter.
private SendCharToOutput ( uint ch ) : void
ch uint The character to send.
return void
示例#1
0
文件: Output.cs 项目: DESYS21/FyreVM
 protected void EmitChar(Engine e, uint ch)
 {
     if (e.outputSystem == IOSystem.Filter)
     {
         e.PerformCall(e.filterAddress, new uint[] { ch },
                       GLULX_STUB_RESUME_HUFFSTR, e.printingDigit, e.pc);
     }
     else
     {
         e.SendCharToOutput(ch);
     }
 }
示例#2
0
 protected void EmitChar(Engine e, uint ch)
 {
     if (e.outputSystem == IOSystem.Filter)
     {
         e.PerformCall(e.filterAddress, new uint[] { ch },
             GLULX_STUB_RESUME_HUFFSTR, e.printingDigit, e.pc);
     }
     else
     {
         e.SendCharToOutput(ch);
     }
 }