1. 70d62f1 removed unnecessary spaces in recipes by Johannes Lohrer · 11 years ago
  2. 36f771d more recipes by Johannes Lohrer · 11 years ago
  3. 073ba60 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  4. 3791bc3 made shears loose durability and return empty bottles if it's used in a crafting recipe by Johannes Lohrer · 11 years ago
  5. d990618 cleaned up item delegator/delegate; marked things in delegates as client only where appropriate (i.e. where they are in their "real" counterparts - block and item) by Florian Nücke · 11 years ago
  6. e05a26c moved config loading into the try-catch in which it was supposed to be in all along... by Florian Nücke · 11 years ago
  7. b2b5641 cleaned up block delegate a bit, since its probably here to stay after all (mostly naming stuff and sorting) by Florian Nücke · 11 years ago
  8. dddf238 suppressing analyzer results for some more blocks where it is meaningless to get the address and that have nothing to say for themselves (yet) by Florian Nücke · 11 years ago
  9. 0ef8577 fixed charges not forgetting their robots by Florian Nücke · 11 years ago
  10. 083e7c2 added setting for size of tmpfs; enabled tag sharing for items after all, it's impossible/way too painful to get the tags and labels to display on the client reliably otherwise. fixed disks saving their content in their item nbt to make this not a huge problem (kinda hacky, but whatever) by Florian Nücke · 11 years ago
  11. e837c43 lua program to change screen resolution by Florian Nücke · 11 years ago
  12. 40755b9 fixed keyboard detection on multiblock screens; fixed screen gui not being centered by Florian Nücke · 11 years ago
  13. 19c2f7d fixed the glitch with items flying towards the player when robots harvested blocks by Florian Nücke · 11 years ago
  14. b66223c note block driver (somehow my dev env doesn't want to make any sound whatsoever right now, but the note above the block pops up, so I assume it works); fixed robot picking on dedicated (player.raytrace *and* player.getPosition is client side... seriously?) by Florian Nücke · 11 years ago
  15. 47e6d6a removed peripheral driver and component by Florian Nücke · 11 years ago
  16. 27e205d made floppy size configurable by Florian Nücke · 11 years ago
  17. 0c778af fixed a fix; fixed power updates sending every time in robot gui (forgot saving last sent state...) by Florian Nücke · 11 years ago
  18. 3ac0d4a sending updates from server to client only when the client is nearby (i.e. we can assume the chunks are loaded on the client). this is somewhat experimental, since we cannot say with 100% certainty that the chunk isn't loaded on the client. will probably send "important" packets to all clients all the time (e.g. robot move) in the long run, but for now let's see how it turns out. by Florian Nücke · 11 years ago
  19. ac0859a added packet size limit for network cards and a setting for that limit by Florian Nücke · 11 years ago
  20. 5c3cecb tooltip for power button in case and robot; made generator drop remaining fuel items when removed from robot and stop burning (i.e. you can't "start" it in one robot and then insert it into another one anymore, which would be kind of weird...); fixed initial slot selection in robots; fixed tooltips being rendered behind screen in robot gui; by Florian Nücke · 11 years ago
  21. 256a57a fixed generator item insertion count by Florian Nücke · 11 years ago
  22. 0a0e1ef localized title and tooltip for crafting upgrade by Florian Nücke · 11 years ago
  23. 119b87f fixed slot computation in crafting by Florian Nücke · 11 years ago
  24. d23a653 crafting addon, allows robots to craft in the 3x3 grid in the top left of their inventory; added extended context interface for robot interaction, allowing access to selected slot index and fake player for general stuff and in particular for inventory interaction; todo: maybe a nicer check in component if method is interface compatible (context/robotcontext) each call? by Florian Nücke · 11 years ago
  25. 608383b updated documentation in api; made createEnvironment for item components pass a tile entity instead of an object (always is a tile entity) by Florian Nücke · 11 years ago
  26. 9ddbc35 localized name and tooltip for generator upgrade; different colors for different item component types by Florian Nücke · 11 years ago
  27. 062b530 fixed robot rendering in player hands and adjusted cable in-hand rendering a little; picking of robots now generates a stack with the current energy in the nbt tag; fixed hit tests for robots due to using range from settings directly after switching to player.rayTrace... derp by Florian Nücke · 11 years ago
  28. ed7ab6b robots can now interact with *living* entities (i.e. use items on entities, such as shears on sheep) by Florian Nücke · 11 years ago
  29. 763054b using find closest entity in world instead of custom implementation by Florian Nücke · 11 years ago
  30. 036e2f0 robot picking now actually hits entities by Florian Nücke · 11 years ago
  31. 1fdb937 showing stored energy in robots in their tooltip; storing energy as int (truncating); fixed item tag creation at multiple occasions: new NBTTagCompound("tag") instead of new NBTTagCompound(), otherwise loading (which would automatically add the name) would lead to "incompatible" stacks. by Florian Nücke · 11 years ago
  32. 4a61744 added afterimage tile entity detection in packet handling back in, still needed for some cases (mostly client->server stuff, like key up packets where the key down triggered a move, for example); storing energy level in harvested robots, i.e. storing the energy level in the nbt tag of the - now custom - dropped itemstack by Florian Nücke · 11 years ago
  33. e175a26 using tile entity description packets to initialize client tile entities instead of the delayed request/response scheme in validate() which seems to solve moving robot problems... at least until there's massive lag, I suppose? by Florian Nücke · 11 years ago
  34. 0d1e3b0 fixed robots possibly not receiving their status information on clients when being validated while moving - at least somewhat: tile entity lookup for received packets now checks if the block is an afterimage, and if so tries to look up the actual robot proxy. this is really hacky and I plan on solving this differently because it may still fail (robot A validates, moves, robot B moves into robot A's place -> B gets A's info), most likely by tagging robot requests with a unique id and then looking them up in the list of active tile entities or something... but for now it does the job. by Florian Nücke · 11 years ago
  35. 983c885 fixed charger state responses by Florian Nücke · 11 years ago
  36. fb6b92b removed power supply item and added generator upgrade for robots, which acts like an internal stirling engine (can eat fuel items and burn them for energy). per default slightly less efficient than a stirling engine; added api methods to interact with a robot's selected inventory slot (if the caller *is* a robot, otherwise does nothing) by Florian Nücke · 11 years ago
  37. 71b2fae updated tooltip and block names for case by Florian Nücke · 11 years ago
  38. 513b3a6 tiered computer cases by Florian Nücke · 11 years ago
  39. d17824e computers and robots no longer start when right clicked, instead there's a button in the gui now that allows turning the computer/robot on or off (also useful for rebooting when locked in some interruptible loop); removed the 'power' slot from computer cases by Florian Nücke · 11 years ago
  40. 4cb741f separating dirs from files in ls by Florian Nücke · 11 years ago
  41. 453be0f moved post-library init code to extra file by Florian Nücke · 11 years ago
  42. 7d4f4c4 fixed charger not continuing after load; added particle effects on robots currently being charged by Florian Nücke · 11 years ago
  43. 9335c2c localized name and tooltip for charger and removed tags (yay decompiled code, \u00A7 is just a section sign...) by Florian Nücke · 11 years ago
  44. d9ac883 fixed shift click inventory stack shifting less a bit: item components could fail to save; also added manual syncing of item component address tags when added to a container to avoid client gui desyncing; added stack limit for appropriate slots in robot by Florian Nücke · 11 years ago
  45. f3dcafc fixed robot inventory not updating by Florian Nücke · 11 years ago
  46. 7cf14ed charger texture and fixed power distributor synchronization when the max failed as well as when there are multiple distributors in a network by Florian Nücke · 11 years ago
  47. 643a25f more work on charger block; redid global power state synchronization for networks, now sending general state every 5% changes (for distributor block rendering e.g.) and sending more frequently only when necessary (e.g. gui of robots); removed the testing power generation from robots, they have to be charged at chargers now by Florian Nücke · 11 years ago
  48. c52e18a cleaned up synchronization in connector/distributor, i think; pausing computer in save to make sure it won't continue running until the whole world finished saving; started work on charger (robot loading block); reworked connector interface, changeBuffer now returns the delta that could not be applied and added new method tryChangeBuffer that will only apply the full delta or nothing, and return true if it worked, false otherwise by Florian Nücke · 11 years ago
  49. f5e1f09 fixed distributor reassignment; split redstone into bundled and normal redstone traits (and two cards, bundled will only be used if either redlogic or mfr is available) by Florian Nücke · 11 years ago
  50. 45ba7b0 pageup/pagedown support for edit by Florian Nücke · 11 years ago
  51. 113aa37 fixed energy redistribution bug on connector removal by Florian Nücke · 11 years ago
  52. 22901d5 fixed energy disappearing from capacitors with adjacency bonus after loading by Florian Nücke · 11 years ago
  53. 9af2023 small method rename and checking for ownership before starting a computer by Florian Nücke · 11 years ago
  54. 3403396 playing with power numbers; fixed some converter bugs; added setting for a factor to apply to computer's running energy cost when they are sleeping (so they need less when they os.sleep(a long time); capacitor adjacency bonus and capacitor doesn't tick anymore; removed internal buffer form converter by Florian Nücke · 11 years ago
  55. ac5fe3c added capability to send http requests with wireless network cards, if allowed in the config (with domain white and black list); fixed nil printing when ls-ing an invalid dir, returning an error message instead; config doesn't support backslashes and since it might disappear in the future, anyway, I decided to switch to the typesafe config library; renamed config class to Settings to avoid name conflicts with typesafe config by Florian Nücke · 11 years ago
  56. 69048a9 fixed directory creation not checking capacity limit by Florian Nücke · 11 years ago
  57. 5f0f5d7 configurable robot names; showing robot name and owner in analyzer result by Florian Nücke · 11 years ago
  58. ad8ff5d made the shortened tooltip localizable; swinging item when clearing it by Florian Nücke · 11 years ago
  59. a014507 cleaned up stupid naming from way back then (parameters item: ItemStack -> stack: ItemStack); displaying shortened address on *all* item components now; only showing shortened / no tooltips per default now, hold shift to see the full tooltip; shift rightclick with an item component selected to "reset" it (clearing its address and data - this wipes disks!); removed the one item stacking limit on items, the documentation of the item(stack?) class was a bit irritating here, making me believe items that could potentially have tag compound must not be stackable - apparently that was a misunderstanding, yay! only trick bit are robots, that have to enforce the one-stacksize thing in their component slots... superfluous items are now first moved to the robots inventory, then dropped to the ground if that's full, too by Florian Nücke · 11 years ago
  60. b4335ad unbroke my test world (item creation order, will sort later); formatting by Florian Nücke · 11 years ago
  61. 08ed375 Merge branch 'master' of cil.li:oc by Florian Nücke · 11 years ago
  62. 9a36667 tooltipocalypse! that has to be enough for now... by Florian Nücke · 11 years ago
  63. 111f444 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  64. 94d0dc6 added some crafting recipes by Johannes Lohrer · 11 years ago
  65. b751fe0 tooltips via localization files, with support for custom formatting (colors and text formats) by Florian Nücke · 11 years ago
  66. eb2778d keyboard rendering in inventory now respects block bounds, making it look a little nicer; reworked keyboard texture to use same color theme as other blocks; fixed keyboard pop-off logic by Florian Nücke · 11 years ago
  67. b203059 moar tooltippery by Florian Nücke · 11 years ago
  68. da7e638 shuffling in proxy by Florian Nücke · 11 years ago
  69. f6b4acb itemstack "factory" in delegate blocks and items by Florian Nücke · 11 years ago
  70. 3fa660a activating keyboards activates the screen they're attached to by Florian Nücke · 11 years ago
  71. 33583dd cleanup; fixed keyboards not being rendered when there's a block in front of them by Florian Nücke · 11 years ago
  72. ec1d708 Merge branch 'master' of cil.li:oc by Florian Nücke · 11 years ago
  73. 94f7c3a moar tooltips; extending entityplayer directly instead of fakeplayer by Florian Nücke · 11 years ago
  74. f6b3660 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  75. 1e3a14a keyboard rendering by Johannes Lohrer · 11 years ago
  76. 8f5cc77 popping keyboards when their screen is broken by Florian Nücke · 11 years ago
  77. 987a056 fixed keyboard not being rendered correctly on client after loading by Florian Nücke · 11 years ago
  78. 55f9f33 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  79. ac2c493 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  80. 4d8ae19 only activate screens when they have a keyboard and only connect keyboards to the screen they're attached to by Florian Nücke · 11 years ago
  81. 0325cbb only allow placing keyboards on screens by Florian Nücke · 11 years ago
  82. 4623641 proper bounds for keyboards and allow placing on top/bottom of blocks by Florian Nücke · 11 years ago
  83. 917d0f2 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  84. 8fa4f39 Merge branch 'master' of cil.li:oc by Johannes Lohrer · 11 years ago
  85. a2a6dd5 getter for world info by Florian Nücke · 11 years ago
  86. 27739bb keyboard test by Johannes Lohrer · 11 years ago
  87. a6541d4 added an exception for robot placements so they face away from the player instead of towards him (unlike *all* other blocks) by Florian Nücke · 11 years ago
  88. 1996332 fixed last char in a row disappearing when it should have been shifted to the right in term.read and editor; fixed computers not properly reporting errors that occur if kernel is crashing during startup; added simple serialize/unserialize methods to text lib to make networking easier by Florian Nücke · 11 years ago
  89. 26c04f1 made ram and disk sizes for the three tiers configurable and generalized their localization method (not one per tier but one for all that gets extended based on the tier); more informative status bare messages for text editor by Florian Nücke · 11 years ago
  90. 594dffd proper clipboard pasting in editor and fixed no-arg check by Florian Nücke · 11 years ago
  91. f7f75d5 added a "status bar" for the editor and reduced some surplus copying by Florian Nücke · 11 years ago
  92. 175f070 fixed a display error when scrolling in editor lead to a horizontal scroll due to the new line being shorter than the previous one by Florian Nücke · 11 years ago
  93. 4bc0b89 cleaned up term some more and reused most of the logic by expanding it to multiple lines to create a... dun dun dun... basic file editor! by Florian Nücke · 11 years ago
  94. 374d66d moved string.trim to text.trim; made some more Lua functions use get/set prefix after all (got too used to dropping it from Scala, but since most callbacks will use this, too, I'd like to keep it uniform); major cleanup of term's readline implementation by Florian Nücke · 11 years ago
  95. e674f49 localized power tooltip in robots by Florian Nücke · 11 years ago
  96. ffd3ff4 made it so that robots only accept floppies (no hard drives) and added background icon for floppy slots by Florian Nücke · 11 years ago
  97. cb4c439 allowing robots to use items for specifiable durations. this allows robots to use bows or throw flasks. can be disabled; exhaustion is now converted into energy cost. one to one per default for now, will need some testing/calculations; fixed render glitch in nei when hovering power tooltip; showing absolute power value in power tooltip; made robot buffer configurable; made moves and turns cost energy and the amount configurable by Florian Nücke · 11 years ago
  98. c26fc97 analyzable is expected to return a node now and doesn't extend environment any more, allowing more flexible use (e.g. also for sided environments); checking for sided environment in analyzer for blocks with no analyzable interface; rendering power level of robots in their gui now; screens now consume more or less power, depending on the number of lit pixels (non ' ') by Florian Nücke · 11 years ago
  99. d4c1934 fixed open port saving (missing '='... grrr); fixed a deadlock; updating positions of wireless cards in robots; improved/fixed rtree. a lot; debug renderer for rtree by Florian Nücke · 11 years ago
  100. 17c8c96 also initializing disk drive and keyboard networks via one block tick; removed another false assert; underped network initialization by Florian Nücke · 11 years ago