X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Fgui_shell_src%2Fmain.c;h=ec88bf3272619b4d25b56b47831ed401bee3b4a6;hb=eeef7163c8753db933444accba0488f3e2d1b1e1;hp=4b82d0e08bcb34a5e3dfa6e0f82e53e4a20011bf;hpb=b0da731b2d89b9dd58de2c98eaf6218a41a21920;p=tpg%2Facess2.git diff --git a/Usermode/Applications/gui_shell_src/main.c b/Usermode/Applications/gui_shell_src/main.c index 4b82d0e0..ec88bf32 100644 --- a/Usermode/Applications/gui_shell_src/main.c +++ b/Usermode/Applications/gui_shell_src/main.c @@ -96,7 +96,7 @@ int main(int argc, char *argv[], const char **envp) { _SysDebug("Activity on child stdout"); // Read and update screen - char buf[32]; + char buf[128]; int len = _SysRead(giChildStdout, buf, sizeof(buf)); if( len <= 0 ) break; @@ -112,7 +112,7 @@ int Term_KeyHandler(tHWND Window, int bPress, uint32_t KeySym, uint32_t Translat static int ctrl_state = 0; // Handle modifiers - #define _bitset(var,bit,set) do{if(set)var|=1<<(bit);else var&=1<<(bit);}while(0) + #define _bitset(var,bit,set) do{if(set)var|=1<<(bit);else var&=~(1<<(bit));}while(0) switch(KeySym) { case KEYSYM_LEFTCTRL: @@ -129,6 +129,7 @@ int Term_KeyHandler(tHWND Window, int bPress, uint32_t KeySym, uint32_t Translat if( ctrl_state && KeySym >= KEYSYM_a && KeySym <= KEYSYM_z ) { Translated = KeySym - KEYSYM_a + 1; + _SysDebug("Ctrl-%c: KS %x => Trans %x", 'A'+(KeySym-KEYSYM_a), KeySym, Translated); } // == 2 :: FIRE @@ -142,7 +143,7 @@ int Term_KeyHandler(tHWND Window, int bPress, uint32_t KeySym, uint32_t Translat // Encode and send len = WriteUTF8(buf, Translated); - _SysDebug("Keystroke translated to '%.*s'", len, buf); + _SysDebug("Keystroke %x:%x translated to '%.*s'", KeySym, Translated, len, buf); _SysWrite(giChildStdin, buf, len); return 0; @@ -184,7 +185,7 @@ void Term_HandleOutput(int Len, const char *Buf) esc_len = -esc_len; } ofs += esc_len; - _SysDebug("Len = %i, ofs = %i", Len, ofs); + //_SysDebug("Len = %i, ofs = %i", Len, ofs); } Display_Flush();