1. 5aa9ad4 removed wrong assert in computer executor post-processing (became invalid after some recent changes) by Florian Nücke · 11 years ago
  2. 71cfa61 general cleanup, making stuff a bit more uniform; cleaned up term lib a bit; fixed redstone. again -.-; small network fix and renamed signal to 'modem_message'; converting tabs to align to properly instead of just replacing them with two spaces; word wrapping when writing to term with wrap enabled by Florian Nücke · 11 years ago
  3. 413a4ed removed the cullface hack for robot equipment rendering, don't know why but it seems not to be necessary anymore by Florian Nücke · 11 years ago
  4. 39f05f0 "closing" robots while they're not running by Florian Nücke · 11 years ago
  5. 4cf0ff5 custom block renderer to get models that are purely tile entity renderer driven to render in the inventory (cables and robots); fixed some flipped sides on cables that were only noticeable in inventory renderer (when not at 90 degrees angles); multi-pass rendering of items held by robots; cleaned up delegator/delegates a little by Florian Nücke · 11 years ago
  6. 36eb340 redirecting player drop requests to robot fake player through own item spawn method (that adds less velocity to the dropped item entity) by Florian Nücke · 11 years ago
  7. d4deb91 added sucking from inventories. this has an optional count parameter to limit the number of items sucked from any given stack; not discarding surplus items from sucked item stacks anymore... thought this was for player, too, but kinda missed the creative mode check there the first time I had a look at it -.- by Florian Nücke · 11 years ago
  8. b3a5521 sided inventory for robots; drop can now place stuff from the robots inventory into some other inventory, if present by Florian Nücke · 11 years ago
  9. 76efda0 aaand telling forge to load us after mfr if possible by Florian Nücke · 11 years ago
  10. 50cddc2 minefactory reloaded rednet interop: logically treated like bundled redstone from redlogic, though it needed some reworking of due to the different architectural approach (based on blocks, not tile entities) by Florian Nücke · 11 years ago
  11. d936cab two new block categories (two new delegators) for normal and special blocks with redstone, to make sure stuff doesn't render as connected to non-redstone blocks (they only check canProvidePower, apparently); obviously a world breaker, so sorted order of blocks while at it; some render fixes for robots with redstone cards (only render as connecting when card is actually in the card slot) by Florian Nücke · 11 years ago
  12. 0e5b555 limiting clipboard size when pasting; multiline pasting by splitting pasted text into multiple lines and generating one signal per line; dropping an actual robot block when breaking a robot by breaking its afterimage by Florian Nücke · 11 years ago
  13. ebb5390 fixed multiblocks always dropping the first sub block when broken normally... wow, i never actually tested this, apparently; fixed clearing equipment from robots not being updated for rendering on client; minor cleanup by Florian Nücke · 11 years ago
  14. 16a6243 better lighting. finally got around to adding normals for cables and now robots, too by Florian Nücke · 11 years ago
  15. ca60668 wrapped robot tile entity in a proxy that gets placed into the world instead, which allows more natural cleanup in minecraft (meaning we don't have to use cheap tricks like manipulating the tile entity list directly); robot rendering and animations by Florian Nücke · 11 years ago
  16. 920d485 power conversion ratios in config by Florian Nücke · 11 years ago
  17. dff73c9 basic animation logic stuff. added fake block that is used as a robot's "afterimage" when it moves, to ensure proper collision bound handling; fixed breaking pause when activating computer blocks; by Florian Nücke · 11 years ago
  18. 9ee52a6 and checking for unbreakable blocks (such as bedrock...) via negative hardness and some cleanup by Florian Nücke · 11 years ago
  19. 5ffe425 more configurable stuffs; added a wrapper layer for the config class when fetching values to make defining settings less verbose, and to make it easier to switch to some other backend implementation in case config really goes away in 1.7; less direct use of IDs; now checking if a robot can actually break a block with the currently equipped tool via ForgeHooks. so now they cannot break obsidian anymore unless they have a diamond pickaxe, for example by Florian Nücke · 11 years ago
  20. 3324371 get a move on. robots can now move. there's no animation yet and accordingly collision bounds aren't interpolated either, but movement basically works. in a very... simple manner, I must say (re-uses existing tile entity, on both server and client); cleaned up delegate class a bit (the node.remove in block break should be redundant since we do this in the environment tile entity base class) by Florian Nücke · 11 years ago
  21. 827344b moved timed pause logic to computer class and improved it a bit (i.e. less bugs); startup delay is now realized via pause; not consuming power while paused anymore (also not while rebooting); fixed computers being incorrectly initialized (regression that slipped in while working on robots); added start, pause stop callbacks to computer interface passed to callbacks; checking for obstruction coordinates in carriage component when movement fails, now by Florian Nücke · 11 years ago
  22. 7f61070 minor refactoring of utils by Florian Nücke · 11 years ago
  23. 1614966 setting pitch and yaw of fake player for robots based on which face they try to interact with (deals with issues when trying to use some items such as buckets); wrapped special handling for stuff like pistons a bit nicer by Florian Nücke · 11 years ago
  24. ba1f66e added setting to emulate CC turtle placing behavior (allow placing blocks in thin air, without any reference point - and no, the bot itself doesn't count!); properly ensuring placement is only possible on existing blocks for robot.place() (if the setting is false); robot Lua library wrapping the low level callbacks a bit by Florian Nücke · 11 years ago
  25. 358328d cleaned up durability restoration; removed onItemUseFirst setting - we have a winner! buildcraft needs it for wrenches, e.g., so now we just check hard-core whether the used item is a portal gun... may add a whitelist/blacklist some time. also not using any portal guns that are not the first one, because when triggered like this it'll always be a default portal by Florian Nücke · 11 years ago
  26. 698d68c not damaging players if configured accordingly; fixed a null pointer by Florian Nücke · 11 years ago
  27. bade1b5 applying weapon bonus damage to robot player for properly calculated damage on swing; applying tool durability reduction on attack, too; simulating a click for swing and use now via raytracing, falling back to simple use when that fails (basically like player click block vs player click air), which means stuff like using bone meal now also properly works; better feedback on what happened when a tool was used; added callback to query current tool's durability; building list of pre-break items earlier to allow detecting items generated in other callbacks than harvest (e.g. for redstone in motion blocks) by Florian Nücke · 11 years ago
  28. 942027d made the collision hack for robots less hacky, now just failing any collision ray traces that originate inside the robot by Florian Nücke · 11 years ago
  29. 3867395 added some more checks as to what blocks robots may break (e.g. fluids... which don't seem to have any particular checks, they just normally can't be broken because players can't target them) and added a (somewhat hacky) workaround for raytrace checks initiated by robots, e.g. when using buckets, so now they can fill and empty buckets - well, emptying only works if they look at a wall, though. by Florian Nücke · 11 years ago
  30. 2c9c142 immediately picking up drops from broken blocks. kinda glitchy on the client because he won't know this right away, so it'll look like the closest nearby player will pick up the item (he doesn't though, and there's no duping or anything, just a graphical glitch) by Florian Nücke · 11 years ago
  31. fbdac07 expanded fake player class a bit to avoid weird things happening (such as the robots opening GUIs - hint: fun time!); added options on whether robots may activate blocks (levers, buttons) and whether onItemUseFirst should be called (disabled per default to get portal guns to work). the latter is a setting because it may cause issues in mods that actually use it by Florian Nücke · 11 years ago
  32. cf6a3e3 only allowing to pick up items into the inventory of robots (not into equipment slots); added logic for placing blocks and using tools/items by Florian Nücke · 11 years ago
  33. 50f09c8 suck it. robots can now pick up items lying around on the ground, and there's a fake player class for robots (with a fake inventory, which is used for that and just dispatches to the robot tile entity's inventory - allows emulating actual player behavior pretty nicely) by Florian Nücke · 11 years ago
  34. b1d96a3 synchronizing selected slot in robots to client and rendering a selection marker in the gui by Florian Nücke · 11 years ago
  35. efe89e0 more inventory interaction for robots by Florian Nücke · 11 years ago
  36. 5f6a9cf made computers self-aware; added some basic interaction of robots with their inventory and the world (select, detect, compare, drop); generalized item dropping from containers on destruction; some redstone "fixes" for problems that kinda didn't exist before: output is now stored as "local", i.e. it is converted to global as needed, which makes changing the rotation of a block with redstone info a non-issue (computers could be rotated, where that problem also existed, sorta, just didn't think about it like this before) by Florian Nücke · 11 years ago
  37. 9b4476a moved gui updating/closing logic in screens to parent class (environment) and moved it to the tileentity package; larger robot inventory by Florian Nücke · 11 years ago
  38. f135d86 made power distributor logic a component to be re-usable in robots; general shuffling for robot stuff, now building an "internal" network for each robot that is *not* connected to the outside world. this will limit some cards installed in the robot (e.g. gpus won't work with external screens) but makes it much easier to re-use components without having the issue that they interfere with external stuff (also, it makes robots less of a complete replacement for normal computers, which they should not be, they have a very specific role, after all); reworked how stuff gets saved a bit more, nodes are now generally saved by their host - in particular the base tile entity we use (Environment) will now only automatically save its `node` if it is that node's host by Florian Nücke · 11 years ago
  39. 6e1ba98 some redstone fixes (again); restructured a bit: computer, buffer (screen) and keyboard now hold their own node, which for the normal blocks is just re-used as that te's node, but this way they can be directly re-used in robots which have to have multiple nodes in one te; more gui stuff for robots; moved gameregistry stuff out of individual classes into the registry singletons; fixed guis being opened twice; mostly got "built-in" components for robot working (it's basically like a case with a built-in screen, fixed gpu and ram, for now) by Florian Nücke · 11 years ago
  40. 077bc98 fleshing out the robot block a bit, adding the gui and inventory by Florian Nücke · 11 years ago
  41. c8bcc59 messed with synchronization of network a bit, mostly removing the synchronizations, meaning using the network in direct lua callbacks is *not safe* anymore. consuming / producing power however should be, that's synchronized (and hopefully won't deadlock, unless I forgot some case); fixed opengl errors when moving screens using RIM by checking if a display list is currently being compiled, and not trying to compile again if so, but simple rendering what we currently have. also reduced the keep-alive time of the cache a bit. by Florian Nücke · 11 years ago
  42. 5faedd2 moved some more stuff from case to computer superclass by Florian Nücke · 11 years ago
  43. 34a9270 underped dedicated server a bit by Florian Nücke · 11 years ago
  44. e286fb7 added new concept for LuaCallback annotation: limited direct calls. this allows defining the number of times a method may be called directly per tick, to limit the load Lua programs can but on the game, for example if the method has to use some expensive resource or generates network traffic. used for gpus, to allow different tiers to be updated with different speeds: set/fill/copy are now direct until they hit the limit. this makes for a much more responsive experience while still making sure Lua cannot completely blow the net traffic off the charts; also made some more getter methods in filesystem direct (in particular `size` which slowed down ls -l way too much); fixed a deadlock, possibly; screens now consume a constant amount of power and will stop displaying stuff when unpowered (won't lose the buffer, though) by Florian Nücke · 11 years ago
  45. 1b7eebf fixed redstone program always setting bundled output; now reading input from isolated red alloy wires (redlogic); general clean up; triggering persistable.save/load form environment class now (our base tile entity class); by Florian Nücke · 11 years ago
  46. f5da4e6 made power supply configurable by Florian Nücke · 11 years ago
  47. 6c5b172 fixed rednet interop; reduced powersupply output by Florian Nücke · 11 years ago
  48. 6570d88 fixed converter not filling up global buffers by Florian Nücke · 11 years ago
  49. 1aa60d2 made analyzer localizable; removed buffer from most components - only producers (converter, power supply) and a new block, the capacitor now have a buffer; tweaked power values a bit (I even made a spreadsheet!); file i/o now needs power (i.e. reading and writing files, all the "info" stuff doesn't); multi-block screens now require more power the larger they are by Florian Nücke · 11 years ago
  50. e68aab6 changed power model to an overflow based one instead of averaging all buffers (buffers across the network will be emptied / filled one after the other, regardless from where the power delta came) by Florian Nücke · 11 years ago
  51. 0eb6ef4 minor refactoring (moved driver implementations to sub-packages); catching errors when parsing network packets and logging those errors (malicious packets could otherwise crash servers by triggering an exception); directly returning the number when running a command on the command block by Florian Nücke · 11 years ago
  52. ac72c27 world breaker! weeeee. massive renaming of stuff that I waited for to accumulate to do all in one big change, since it breaks my test world due to id changes. also a bit of refactoring here and there, e.g. the block previously called computer is now called case. computer is now the base class which will hopefully be generic enough to be re-used for bots. hopefully didn't break anything... by Florian Nücke · 11 years ago
  53. 584cec0 cables; changed things around a bit with regards to tile entities: environment is now the tile entity whereas rotatable is now a trait. this makes a lot of things less redundant in tile entities, in particular after cleaning up tile entity connect/disconnect logic (disconnect now purely via invalidate/onUnload); fixed default case for shouldSideBeRendered in special block; by Florian Nücke · 11 years ago
  54. f1ed542 added a new interface to the api that allows tile entity environments to add more information when the analyzer tool is used on them; removed check for analyzer in delegator block, must be sneaking for some blocks to use it now (screen, computer, disk drive) and keep control pressed in addition to sneaking to copy the address to the clipboard (hardcoded keys, yay... may make it configurable some day... or not); rotation was kinda working but not fully (could not change yaw for blocks that faced up or down), now it works for all cases (probably); forcing render update when rotating blocks (computer block didn't re-render, for example) by Florian Nücke · 11 years ago
  55. b466887 limiting length of power display of analyzer by Florian Nücke · 11 years ago
  56. b1ac3e8 updated eris; increased screen buffer size because tier 3 screens failed to clear way too often; displaying power state of nodes via analyzer; fixed power getting lost when changing multi-screens (screens were cleared via same functions as those called from Lua, now they're cleared directly) by Florian Nücke · 11 years ago
  57. b169748 updated eris version by Florian Nücke · 11 years ago
  58. 2be5daf Merge branch 'master' of cil.li:oc by Florian Nücke · 11 years ago
  59. 0c8347d more color screen stuff; made advanced screen 4 bit, pro screen 8 bit (which is actually pretty much for a pseudo computer in a game with 16x16 textures...); depth can be dynamically changed; colors are always provided as 32bit rgb from the lua side to make things easier, so it's ok to call these even on a color-less gpu+screen; added vertical gap between chars in char texture to avoid bleeding when interpolating due to downscaling; made some programs use colors (sh, lua and ls); screw scanlines, aliasing is too much of a pain by Florian Nücke · 11 years ago
  60. 4ee76b1 working on color screens by Florian Nücke · 11 years ago
  61. 39b2c97 added analyzer tool: right click on a block show its address. for computers it also shows the last error message, if any (if the computer crashed). for multi screens it always shows the address of the origin. shift-rightclick copies the address to the clipboard. by Florian Nücke · 11 years ago
  62. e885faf added analyzer tool: right click on a block show its address. for computers it also shows the last error message, if any (if the computer crashed). for multi screens it always shows the address of the origin. shift-rightclick copies the address to the clipboard. by Florian Nücke · 11 years ago
  63. a7d2119 r-tree for wireless networks; type in time formatter; label abstraction for more flexible label editing (e.g. for computercraft disks); allow mounting computercraft disks in disk drive; dependencies on mods for apis by Florian Nücke · 11 years ago
  64. 1c34cdb sending wireless network messages now costs power based on the used signal strength and range per power is configurable, as is the power buffer size of wireless network cards by Florian Nücke · 11 years ago
  65. 35d8e07 computer no longer uses power based on cpu time, since this caused massive power spikes when loading (and possible when the world lagged a lot), because the worker thread runs on low priority and could therefore be stalled by the host os for a while if something else takes priority; managed item environments now get their container passed along (usually the tile entity with the inventory they reside in), used by redstone card from now on to determine the block to read/write from/to (instead of the message sender, which should always be that same block, but it's clearer like this). also used for the new wireless network cards so they know where they are; added wireless network cards. they act as an upgrade to normal network cards, i.e. they still send "normal" network messages in addition to looking for receivers in range. the signal strength for sending can be adjusted via the api, the higher the further we look for receivers, but the more power it will cost (this isn't in, yet). in addition we sample a few blocks between sender and receiver to check if the signal may have been blocked. by Florian Nücke · 11 years ago
  66. bccee0c added basic "ownership" implementation: computers now have a list of users, and only users can perform direct operations on the computer, such as typing, changing the inventory and breaking the computer block. this does not apply to operators or in single player mode; added a new network message for computers `computer.checked_signal`, which expects an `EntityPlayer` as the first parameter and checks if the player is a user before pushing the signal. used by the keyboard for now; finally added custom implementation of 'mergeItemStack' that properly respects a slot's item validity (Slot.isItemValid) so shift clicking now inserts components into the right slots for computers; some small changes to Lua shell lib; added -b option to redstone Lua program to allow reading/setting bundled input and output; added programs to manage users from the shell by Florian Nücke · 11 years ago
  67. 9098d00 moved key tracking to keyboard companion object by Florian Nücke · 11 years ago
  68. 9948879 tracking pressed keys on server to send key up signals when a player disconnects / changes dimension / dies by Florian Nücke · 11 years ago
  69. 2a48cb2 fixed timers firing continuously after setting the time to a future date; fixed date stuff after realizing /time set sets world time absolutely (too used to nei by far...); added proper os.date implementation; by Florian Nücke · 11 years ago
  70. eb3a8e1 added bundled redstone support, only support for immibis' RedLogic mod for now by Florian Nücke · 11 years ago
  71. bb7684a cleaned up included apis some, removing all the unnecessary interfaces; made carriage component completely async; reworked state logic in computer some, probably broke something along the way; made startup delay after loading a setting; by Florian Nücke · 11 years ago
  72. ce69b1c removed some unnecessary api stuff and unused jnlua classes by Florian Nücke · 11 years ago
  73. 8395814 added @Optional for ic2, bc and cc interfaces by Florian Nücke · 11 years ago
  74. e9bc088 upgraded forge version and added API annotation to api package by Florian Nücke · 11 years ago
  75. 59ab876 minor cleanup by Florian Nücke · 11 years ago
  76. 2a2785e cleaned up RIM reflection into a helper singleton; cleaned up and extended RIM component a bit; extended arguments class with type testing methods; documented arguments class; linearly increasing screen buffer size per tier (copy would fail for advanced screens...) by Florian Nücke · 11 years ago
  77. 43d9365 renamed LuaCallback.asynchronous to LuaCallback.direct by Florian Nücke · 11 years ago
  78. 7d907fd checking direction validity in carriage.move synchronously by Florian Nücke · 11 years ago
  79. ed458f9 added driver for RIM's carriage controller block and fixed some issues with blocks being moved by Florian Nücke · 11 years ago
  80. e99eebf fixed lighting bug in dynamic inventory renderer by Florian Nücke · 11 years ago
  81. ab785eb forbid access to string metatable for sandbox; minor restructuring of libraries (mostly sorting by name); saving managed environments attached to an adapter. this is not very reliable, sadly, since there are way too many ways neighbors can change outside our control (chunks only partially loaded, types removed across games due to other mod changes, mods that move blocks such as RIM, ...); making some effort to re-attach peripherals using their previous address; removed connection code on chunk load in network manager, since this is also handled by the check in the tile entities' update function by Florian Nücke · 11 years ago
  82. fcdb75e rudimentary driver for computercraft peripherals: it emulates a computer that is the whole network and does not provide a lua context which may cause nullpointers. good enough to allow accessing cc disk drives and read/write floppies in them. by Florian Nücke · 11 years ago
  83. 3c6d3f3 less nullpointers in buildcraft power logic; handling weird cases where the computer may not have run yet but we have to recompute the amount of memory and there is no ram; removed dead rotation logic from block activate, all handled via rotateblock; fixed computers possibly stopping after loading due to bad sleep value by Florian Nücke · 11 years ago
  84. 1b57193 made all the power stuff configurable; working around power spikes when loading computer blocks (waiting for world to settle for a second before continuing execution) by Florian Nücke · 11 years ago
  85. 49ced36 computers need power to run (base level + elapsed cpu time); screens need power to change their display, different costs per operation, depends on number of 'pixels' changed; fixed distributors not balancing buffers if attached to existing network without distributor by Florian Nücke · 11 years ago
  86. 301cec0 fixed adapter's network functionality. tested with latest CC and now it actually works. what a surprise. by Florian Nücke · 11 years ago
  87. 59c953e initializing network connections in tile entities' update function now (i.e. we call Network.joinOrCreateNetwork from there if we have a node and that node isn't in a network yet). this is because on block added is somewhat unreliable, in particular when other mods start getting involved - say, RIM. which is what I tested with right now, and it actually works, i.e. computers can be moved by carriages and keep running without fail. huzzah; also removed weak keys from screen renderer cache, the timeout is enough by Florian Nücke · 11 years ago
  88. 60447a0 localizations for power supply by Florian Nücke · 11 years ago
  89. 666ab55 fixed rendering with multiple distributors in a single network by Florian Nücke · 11 years ago
  90. fd67e24 added a simple power supply that generates power out of thin air for testing by Florian Nücke · 11 years ago
  91. f4641d5 better check for whether power redistribution is needed and reduced number of network packets generated for synchronizing average buffer fill (used for display, brightness of overlay on distributor) by Florian Nücke · 11 years ago
  92. 521613f added option to make power optional; made it so that node creation is impossible for clients, since nodes are exclusively meant for server logic, this makes this more clear; underped buffer re-balancing computation and added check to stop if delta gets small by Florian Nücke · 11 years ago
  93. e420b0f moved node name from node to component, since that's where it belongs by Florian Nücke · 11 years ago
  94. 734b1bd made the node factory stuff nicer to use. the backing code has become somewhat ugly, but that's just java's fault so whatever. it is now possible to write something along the lines of api.Network.newNode(host, name, visibility).withComponent().withConnector(bufferSize).create(), which reads pretty nicely; power is back, but with a few changes. for one, the "running cost" is gone, since that was really just confusing, and would have resulted in frequent updates once the buffers are full/empty anyway (once because we'd have to check whether to fill up or not, once to check if we have enough power or not). it's just much more intuitive to just have a buffer per powered entity that can be filled/emptied as needed. also, there's no differentiation between consumers and producers anymore. producers just fill up their buffers, while consumers empty their buffers. the power distributor now simply takes care of balancing the amount of energy in all buffers connected to the same network it is connected to. multiple distributors don't need any special logic this way, either, since the first one to update simply marks all processed buffers as clean (if they were dirty due to changes); renamed PowerSupply to PowerConverter by Florian Nücke · 11 years ago
  95. f9e6439 using default pcall and xpcall again in sandbox, using a trick seen in corowatch (setting hook count to 1 on timeout) by Florian Nücke · 11 years ago
  96. d92257d fixed network messaging; pulled persist logic completely to the scala side, doing away with the boot lua script; by Florian Nücke · 11 years ago
  97. 5aad6d6 cleaned up component visibility updating; some fixes by Florian Nücke · 11 years ago
  98. 12081e5 some more "shortcut" functions in node interface, allows writing node.blah(..) instead of node.network.blah(node, ...), which, since normally a node reference is held, was way too common. by Florian Nücke · 11 years ago
  99. 730c8f0 restructuring network a bit, using messages more for "event like" stuff, thus removing the return values and simplifying the network manager in general quite a bit; removed "system messages", the manager now directly calls onConnect/onDisconnect in the nodes' environment, and said functions take now the relevant node as a parameter; component invoke is now directly called via component interface, not as a message anymore; stuff, i guess by Florian Nücke · 11 years ago
  100. fe446e9 fixed nullpointer in disconnect of powered down computers; fixed components with a visibility lower than their reachability not being added to the list of visible components in a computer by Florian Nücke · 11 years ago