1. 90f4b2d lua allocator memory tracking fix; mutliitem (multiple items sharing same id) by Florian Nücke · 11 years ago
  2. 3ee9f8c Merge branch 'master' of cil.li:oc by Florian Nücke · 11 years ago
  3. cae5bf3 added getter for neighbors of a network node by Florian Nücke · 11 years ago
  4. d7905fe timer implementation on the lua side (driven via event.fire) by Florian Nücke · 11 years ago
  5. 12da32b started working on redstone interfacing; improved term.write performance by caching the screen's resolution and added a signal for screen size changes by Florian Nücke · 11 years ago
  6. 484dfd6 allowing "control characters" in text buffer, too, now (it only works on chars so it really doesn't care, plus our renderer does, too); since java works on unicode strings and conversions are a pain lua will have to live with those. added a couple of unicode-aware replacements for string lib functions, the more complex ones are still todo by Florian Nücke · 11 years ago
  7. 887a219 redid font texture to include all ascii chars, even special chars for control characters since there was padding anyway and in particular umlaut chars and such; simplified initialization of renderer a tad, too by Florian Nücke · 11 years ago
  8. cca693d fixed resuming of paused computers originally in SynchronizedReturn state; fixed items saving their address (graphics cards i.e.) by Florian Nücke · 11 years ago
  9. 86b7b84 moved event handlers to a more local scope; some fixes in lua scripts; fixed background worker being spawned twice when starting a computer (automatically triggered via first signal, no need to start one manually) by Florian Nücke · 11 years ago
  10. 4dfa9ab yet more network related fixes by Florian Nücke · 11 years ago
  11. 6ce3da2 fixed underscore being too under (was cut off); a couple of tweaks for the command line; clipboard support by Florian Nücke · 11 years ago
  12. 5936c0d hell yeah, interactive command line is working by Florian Nücke · 11 years ago
  13. 75ec692 yet more network reworking and starting to work on the Lua side again by Florian Nücke · 11 years ago
  14. 209ba2c underped network quite a bit by Florian Nücke · 11 years ago
  15. 2b1d410 some eris fixes; compiling with /02 instead of /Ox seems to have solved remaining crashes, we'll see...; yet another lib move, the final one I think by Florian Nücke · 11 years ago
  16. fe6cc8c IC2 API by Johannes Lohrer · 11 years ago
  17. 29a79b5 rudimentary keyboard input is working by Florian Nücke · 11 years ago
  18. 48cf012 messages working it would seem (screen printing works again, some quirks still) by Florian Nücke · 11 years ago
  19. f337371 allowing message handlers to return results, which allows for messages with results (e.g. to query information from nodes such as a gpu's current resolution) by Florian Nücke · 11 years ago
  20. 0930f89 screw this, api will be in scala, the pain from java<->Any incompatibilities is too big; still far from done but at least it builds again by Florian Nücke · 11 years ago
  21. 5aea2ef more shifting from pure drivers to network (drivers will still be used for items and "external" blocks) by Florian Nücke · 11 years ago
  22. 6bcfab2 cleanup by Florian Nücke · 11 years ago
  23. 5871731 working on network layer, to replace most driver api logic: everything will be "networked", no direct references to anything anywhere, callbacks will all be via network messages; changed library folder structure and keeping everything in a single library now to avoid issues with dependencies (in particular under linux where dlopen tries to be clever) by Florian Nücke · 11 years ago
  24. 0e218d9 updated eris and added (untested!) linux libraries by Florian Nücke · 11 years ago
  25. a99f7f0 computer gui by Florian Nücke · 11 years ago
  26. 16ec4f6 display lists for screen gui and general performance improvement in monospace font renderer (not rendering spaces, just translate) by Florian Nücke · 11 years ago
  27. 20028c9 fixes in monospace font renderer and gui for screen by Florian Nücke · 11 years ago
  28. 93a38a3 minor cleanup in driver wrapping code by Florian Nücke · 11 years ago
  29. acd00aa fixed driver callback persistence by Florian Nücke · 11 years ago
  30. 5b817e3 couple of fixes here and there; tile entity renderers for computer (environment light independent "on" light) and screen (text, for testing / preparation for multiblock screens). hardly efficient at this time, display lists will come later. by Florian Nücke · 11 years ago
  31. 8fed193 screen block textures by Florian Nücke · 11 years ago
  32. 551fd3b remembered that blocks' metadata is only four bit, so moved rotation logic to a tileentity base class and also made it more flexible (supporting all 6 facings via pitch/yaw); added block textures for for computer (different for on/off) by Florian Nücke · 11 years ago
  33. b98b029 localization in file; fixed ascii font texture (was missed one char, 223 i think); switched from multiple "real" blocks to one proxy block with many sub-blocks, so we only need one block ID (todo: same for items, if possible) by Florian Nücke · 11 years ago
  34. ae0a865 monospace font (mix of bitstream vera and andale mono) and renderer, renders at half scale for antialiased font by Florian Nücke · 11 years ago
  35. 978e413 gui refactoring by Florian Nücke · 11 years ago
  36. a88b4f5 merged renderer used for screen into screen gui class by Florian Nücke · 11 years ago
  37. c90d7d1 renamed proxies to be symmetric by Florian Nücke · 11 years ago
  38. 2b25bc2 happy shuffling... let's see. moved textbuffer from graphicscard to screen on the server side, because it a) makes sense b) makes it much less painful to synchronize server and client screens. expanded networking a bit, with a sender and handler class for server and client. centralized for now, until I can think of an elegant, symmetric way of decentralizing it. initializing screens on client side when created. dynamically retrieving component instances when needed (not storing them anywhere) which *should* work around any issues related to installed block components living in unloaded chunks. by Florian Nücke · 11 years ago
  39. c5e3b7e textbox tweaks by Florian Nücke · 11 years ago
  40. ae5a793 cleanup and some fixes by Florian Nücke · 11 years ago
  41. 75d8a52 Merge branch 'master' of cil.li:oc by Florian Nücke · 11 years ago
  42. 87892c3 basic 'write' implementation for lua (writing stuff to the screen); fixed/added array return value support (jnlua only supports tables -> java, not the other way around as it turns out) by Florian Nücke · 11 years ago
  43. 677f075 made display resolution dependent only display text if within the textfield by Johannes Lohrer · 11 years ago
  44. 95a15ed new ScreenGui.scala by Johannes Lohrer · 11 years ago
  45. e55dfe9 Automatic linebreaks by Johannes Lohrer · 11 years ago
  46. ca16ac2 resolved conflicts by Florian Nücke · 11 years ago
  47. 3754ee1 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  48. 1fc8d00 own text field by Johannes Lohrer · 11 years ago
  49. 2cabc85 type constraint for tileentity reader in client packethandler by Florian Nücke · 11 years ago
  50. 9e2c19a fixed a lot of stuff regarding driver callbacks and wrapped exceptions to hide java part of them on the lua side; screen updates are properly sent to the client by Florian Nücke · 11 years ago
  51. 2edb614 cleaned up inventory code a little and made it so that item components are installed / uninstalled when added / removed from a computer by Florian Nücke · 11 years ago
  52. 0360cc6 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  53. c94488c Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  54. 54dbabb hooked up client packet handler by Florian Nücke · 11 years ago
  55. b373d95 I dont know^^ to long ago most likely some tests for gui by Johannes Lohrer · 11 years ago
  56. 2c6259b gpu item in list and extracted component cache for item components to be reusable (e.g. for hdds) by Florian Nücke · 11 years ago
  57. cb7d54c client packet handler is client anyway, so getting the world instance directly from the player object should work by Florian Nücke · 11 years ago
  58. 92d58f7 component ids and installation/uninstallation of block components by Florian Nücke · 11 years ago
  59. a059183 some groundwork for networking (e.g. for updating monitors on client when graphics card on server does something) by Florian Nücke · 11 years ago
  60. f9cd7fd working on drivers by Florian Nücke · 11 years ago
  61. baad2eb another eris update by Florian Nücke · 11 years ago
  62. dca40c9 updated libs to new eris version by Florian Nücke · 11 years ago
  63. 28a54ae updated libs based on new eris version by Florian Nücke · 11 years ago
  64. c9136a6 updated libs based on newer eris version (has some more checks) by Florian Nücke · 11 years ago
  65. 95bf07f Added basic gui no texture yet by Johannes Lohrer · 11 years ago
  66. a5fdb98 less deadlocks, more locks! isn't multi-threading fun? by Florian Nücke · 11 years ago
  67. 87a420b trying to write libraries every start, to force updates if possible by Florian Nücke · 11 years ago
  68. 0327cec resumable computers; signals appear to work; fixed bug in allocator in jnlua by Florian Nücke · 11 years ago
  69. 4e820da switched to Lua 5.2 and JNLua 1.0.5; x64 libs (hopefully) by Florian Nücke · 11 years ago
  70. 61f53b9 init by Florian Nücke · 11 years ago