Search results

  1. Marcin Sciesinski

    [WaS] Tech Tree and Crafting Concepts

    Warning! Warning! Tangent detected!
  2. Marcin Sciesinski

    Tweaking Machines

    You could probably add multiple leaf blocks (or network blocks). One for each edge block in the multi-block?
  3. Marcin Sciesinski

    [WaS] Tech Tree and Crafting Concepts

    Ok, I like the idea of season and I should be able to add a new mod for affecting environmental conditions. So we'd have two (for now) float fields in the world - temperature and humidity. The base temperature and humidity will be from the world generation, on top of that we can have modifier...
  4. Marcin Sciesinski

    Tweaking Machines

    Out of curiosity, are those fluid ducts filling blocks with FluidInventoryComponent? If so, can they be used to fill Cooking station from W&S?
  5. Marcin Sciesinski

    If anyone needs a MC mod to clone, or wants to see the finer points of Tekkit/Voltz, i can host

    I'd suggest trying to play around with the TtA 1&2 (reading the journal entries should guide you) and if you have some ideas, you can either contact me directly or post in this thread: http://forum.terasology.org/threads/was-tech-tree-and-crafting-concepts.960/ If you wish, you may also rewrite...
  6. Marcin Sciesinski

    If anyone needs a MC mod to clone, or wants to see the finer points of Tekkit/Voltz, i can host

    I'm looking for a game/system designer to help out with the Throughout the Ages line of mods, that at some point will include mods that will cover the areas that Universal Electricity and/or IC2 do. If you'd be interested in helping out with that, please let me know. Side note: I also have...
  7. Marcin Sciesinski

    Tree/flora gen optimization from Danger - somebody run with it?

    Problem is, that with the suggested "improvement" it changes what the code wants to accomplish. There is no "number of trees/flora appropriate to the facet" for a chunk/region. Also, due to the fact that this facet may be called multiple times for different region sizes (including overlapping)...
  8. Marcin Sciesinski

    Tweaking Worldly Tooltip

    If the tooltip is calculated on the client, it should not be a big burden, after all that's how the UI is currently done, it is re-created on each frame. I don't think it's particularly large problem to do the same thing for the tooltip. The event approach saves processing on the server (very...
  9. Marcin Sciesinski

    Tweaking Worldly Tooltip

    The thing is, that the entities will be (most likely) updated by the server and sent over the network to clients that "observe" the chunks these entities are in. If you say that firing events is expensive, then please keep in mind that for each entity update there is at least one event fired...
  10. Marcin Sciesinski

    Tweaking Worldly Tooltip

    This would require a lot of updates to the component, for example imagine a block that does some work over time and you'd like to visualize a progress 1%...2%... etc. You'd have to set the component after each progress, and it would have to be done for each block in the game that does that...
  11. Marcin Sciesinski

    Tweaking Worldly Tooltip

    Any idea how this module will be integrated with the said blocks? Is it going to fire an event at the entity player is looking at?
  12. Marcin Sciesinski

    Store Biome Per Block

    I talked with shartte on chat a bit and we've came to an agreement: - each block will have a biome_id stored and transferred to clients, - this biome_id will be populated by WorldGenerator during chunk generation and might be updated by mods, - WorldProvider (or *Core) will have a method...
  13. Marcin Sciesinski

    Store Biome Per Block

    As was expressed above, the fact that temperature/humidity is taking so long to calculate at the moment (if it is indeed) is probably a bug, as currently it uses a noise function to calculate it. In AnotherWorld, a factor of height (y) is taken into account in addition to the noise function...
  14. Marcin Sciesinski

    Store Biome Per Block

    It would however limit the storage, where you'd be storing extra information per block. Which potentially might end up being A LOT of data. Each chunk is 32x32x64, so if just 1 byte is used, that's 65kB just to have a grass/foliage hue.
  15. Marcin Sciesinski

    Store Biome Per Block

    I'd request however having as little limitations (requirements to have a biome) in the core engine world-releated interfaces, as possible. I'd like to still be able to create a world were atmospheric conditions are defined by the humidity/temperature/height/etc (like it is in real world) rather...
  16. Marcin Sciesinski

    Store Biome Per Block

    I agree, we should remove the need for the client for having any extra information about the world, over what they actually need. If the seed is "leaking" to the client due to grass hue, we should consider introducing 16 types of grass (with different hues) and populate the world with correct...
  17. Marcin Sciesinski

    Store Biome Per Block

    Hi, is it still going to be that the biome is defined by the environment (humidity, temperature, height, etc), rather than the way it was in Core, where biome was based on perlin and temperature and humidity depended on it?
  18. Marcin Sciesinski

    Excellent podcast (ani-cast?) to learn Game Development

    If you'd like to learn Game Development (not software programming), you might want to watch "Extra Credits" available at http://extra-credits.net/
  19. Marcin Sciesinski

    Resolved Crash as soon as I use the pickaxe on anything

    The following error might be due to an error I recently pointed out in the PR 1152, Immortius will be probably fixing it (if not yet fixed): Unable to resolve asset: texture:engine:color.ff0000ff
  20. Marcin Sciesinski

    Archived Can't find light settings

    So, without doing anything for a minute (not touching keyboard/mouse) you still get this kind of brightness? I remember I saw a code somewhere, that was simulating the real-world scenario, where if you were in dark environment and the environment goes bright, you get blinded for some time.
Top