diff --git a/cgi.d b/cgi.d index f54c055..9f78a4c 100644 --- a/cgi.d +++ b/cgi.d @@ -343,6 +343,26 @@ class Cgi { CommandLine } + /+ + /++ + Cgi provides a per-request memory pool + + +/ + void[] allocateMemory(size_t nBytes) { + + } + + /// ditto + void[] reallocateMemory(void[] old, size_t nBytes) { + + } + + /// ditto + void freeMemory(void[] memory) { + + } + +/ + /* import core.runtime; diff --git a/gamehelpers.d b/gamehelpers.d index da4e6a8..462f277 100644 --- a/gamehelpers.d +++ b/gamehelpers.d @@ -115,7 +115,10 @@ class GameHelperBase { /// The virtual digital controllers are best to use if that model fits you because it /// works with several kinds of controllers as well as keyboards. - JoystickUpdate joystick1; + JoystickUpdate joysticks[4]; + ref JoystickUpdate joystick1() { return joysticks[0]; } + + bool[256] keyboardState; } /// The max rates are given in executions per second @@ -135,11 +138,11 @@ void runGame(T : GameHelperBase)(T game, int maxUpdateRate = 20, int maxRedrawRa window.eventLoop(1000 / maxUpdateRate, delegate() { - if(joystickPlayers) { + foreach(p; 0 .. joystickPlayers) { version(linux) - readJoystickEvents(joystickFds[0]); - auto update = getJoystickUpdate(0); - game.joystick1 = update; + readJoystickEvents(joystickFds[p]); + auto update = getJoystickUpdate(p); + game.joysticks[p] = update; } else assert(0); auto now = MonoTime.currTime; @@ -151,6 +154,7 @@ void runGame(T : GameHelperBase)(T game, int maxUpdateRate = 20, int maxRedrawRa }, delegate (KeyEvent ke) { + game.keyboardState[ke.hardwareCode] = ke.pressed; // FIXME } ); diff --git a/joystick.d b/joystick.d index 9cf1a09..df223e3 100644 --- a/joystick.d +++ b/joystick.d @@ -198,7 +198,7 @@ version(linux) { joystickMapping[player] = &xbox360Mapping; } } else if(event.number == 6) { - if(event.value == 32767 && joystickMapping[player] is null) { + if((event.value == 32767 || event.value == -32767) && joystickMapping[player] is null) { joystickMapping[player] = &ps1Mapping; } } diff --git a/script.d b/script.d index 83f2a12..f88794b 100644 --- a/script.d +++ b/script.d @@ -1,3 +1,16 @@ +/* + REPL plan: + easy movement to/from a real editor + can edit a specific function + repl is a different set of globals + maybe ctrl+enter to execute vs insert another line + + write state to file + read state from file + state consists of all variables and source to functions + + Steal Ruby's [regex, capture] maybe +*/ /++ A small script interpreter that builds on [arsd.jsvar] to be easily embedded inside and to have has easy two-way interop with the host D program. The script language it implements is based on a hybrid of D and Javascript. diff --git a/simpledisplay.d b/simpledisplay.d index e45efd7..9330fba 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -819,7 +819,7 @@ version(Windows) { pragma(lib, "gdi32"); pragma(lib, "user32"); -} else version (Posix) { +} else version (linux) { //k8: this is hack for rdmd. sorry. static import core.sys.linux.epoll; static import core.sys.linux.timerfd; @@ -8288,7 +8288,7 @@ version(X11) { // set the pid property for lookup later by window managers // a standard convenience import core.sys.posix.unistd; - uint pid = getpid(); + arch_ulong pid = getpid(); XChangeProperty( display,