Recent content by chapp007

  1. C

    Notch looking at Terasology

    I sent my first tweet to someone tonight. I've never been a big fan of twitter but since I've become interested in game dev and specifically voxel engines I've subscribed to updates from several members of the minecraft community including notch. I tweeted to @notch the following: "What do you...
  2. C

    Implementation gestalt-worldgen

    I put the project out there at https://github.com/jchappelle/gestalt-worldgen-proto. Not much to see right now. In doing it I learned a lot about the real dependencies. The main one is the dependency on the entitySystem package in engine. I think the first step is going to be finishing up the...
  3. C

    Implementation gestalt-worldgen

    Still not working in gradle after adding that repository. I switched to use maven for dependency resolution and added the repository and it seems to be working. Since this is a prototype I don't want to get hung up on details like this since we can always switch it over to gradle later. I'll...
  4. C

    Implementation gestalt-worldgen

    Ok gradle experts will laugh at me I'm sure but I'd rather go ahead and ask instead of wasting time on something this simple. I'm setting up the gestalt-worldgen-proto project and I'm having trouble resolving the TeraMath dependency. This isn't a multi-module project and I just created it with...
  5. C

    Implementation gestalt-worldgen

    I'm pretty sure that one is ok too since engine has a dependency on TeraMath so when someone depends on this new version their classpath will effectively be the same(Unless they depend on a separate version of TeraMath and override the transitive dependency that engine pulls in, which would be a...
  6. C

    World Generation Tutorial Changes

    I added a "Facet Configuration" section to the tutorial. I also started on a "World Generation Concepts" overview page but its still a work in progress. Let me know what you think. https://github.com/Terasology/TutorialWorldGeneration/wiki
  7. C

    Broken links on Terasology Splash site

    It looks like the "Contributor Guide" and the "Modding Guide" links are broken at http://terasology.org/#development.
  8. C

    Implementation gestalt-worldgen

    @Cervator and I have been discussing moving the world gen code into a separate project called gestalt-worldgen. The original thread is here: http://forum.terasology.org/threads/entity-system-code-in-engine-and-gestalt.1599/#post-13921. I started this thread so we could have a focused discussion...
  9. C

    Entity System code in engine and gestalt

    I'll start a new thread about performance and mention you since this one is growing legs. :-) Great! Exactly what I was thinking. I think it makes sense to have it in a separate repository because it's release cycle probably won't line up with the other gestalt components since they mostly...
  10. C

    Minor code error on the wiki

    @Cervator, Thanks I just joined. @oniatus, I totally agree. I think my interest in the project really grew when the light bulb came on for me. I think a high level description the interaction between Facet, FacetProvider and WorldRasterizer would be very helpful for newcomers. It's really a...
  11. C

    Entity System code in engine and gestalt

    Looks like Region3i needs to move out of the engine and into TeraMath no biggie there. However, CoreChunk is needed by the WorldRasterizer. CoreChunk needs Block and to set Blocks you need BlockManager. To me it seems like world-gen sort of needs a world-model to be able to work.
  12. C

    Minor code error on the wiki

    Got those changes done. The tutorial wiki now only lists the one version of documentation. https://github.com/Terasology/TutorialWorldGeneration/wiki. I'm happy to help with documentation and tutorials. I'm of the mindset that you can write the coolest software in the world but if no one knows...
  13. C

    Entity System code in engine and gestalt

    One thing that intend to do is try to figure out why I get a really low frame rate when running the game. I run the 8GB run configuration on a machine with 24GB of RAM. I know my graphics card isn't great, this is my work computer for development and not a gaming computer. However, my game runs...
  14. C

    Minor code error on the wiki

    Sure. I just made the one change. I'll get the other things you mentioned done as well. Yes I would like access. My github account is https://github.com/jchappelle. By full access do you mean no pull requests will be necessary and I'll be able to commit to master for that module? I'm not a Git...
  15. C

    Minor code error on the wiki

    I apologize if you guys already know about this but I was following along with the wiki tutorial on Facet Production for 1.x and hit a compiler error in the SurfaceProvider class. The wiki states the following code snippet: // loop through every position on our 2d array Rect2i...
Top