SendCharToOutput() 개인적인 메소드

Sends a single character to the output system (other than IOSystem.Filter.
private SendCharToOutput ( uint ch ) : void
ch uint The character to send.
리턴 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);
     }
 }