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
ファイル: Output.cs プロジェクト: ChicagoDave/Zifmia
 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);
     }
 }