Tigersauce

Nov 13, 2007@4:52pm

I can’t believe TIGSource just did this. I remember people talking about the proper way to pronounce TIGSource in a comments thread the other day and somebody mentioned they thought it looked like “Tigersauce”. Hilarity ensued.

But then this: The Independent Gaming Souce

Filed under: Stuffs - Comments (0)

Refactor Magic

Nov 6, 2007@4:25pm

I have discovered the refactor tool in Eclipse. I seriously never actually bothered to find out what it did prior to a week ago, and for that I feel kinda silly. My outlook on package structure in Java has done a complete 360, as I can now start developing willy-nilly with the knowledge that I can always rearrange things later as the project comes into focus somewhat better.

Why, Java, you ask? Yes, my games are coded in C++, but I like making my tools in Java. The language as a whole, and especially the garbage collector, just lend themselves superbly to tools creation, tools which require large amounts of data to be thrown about, added, changed, deleted, etc. The garbage collector lets me get around all of this happily, as I can just do all of the above without ever having to worry about any memory escaping out into the raging wilderness of my computer and eating up my precious memory, starving out the poor denizens of my address space. Also, Eclipse

In this particular case, I’m developing a successor to SplashMap. I was really happy with the way SplashMap turned out, it allowed me to create some maps (which never saw use in any games) very easily, but it’s just not quite enough. I want to be able to create entire games from my editor, not just maps. Thankfully, I did a fairly decent job of laying my class design out for SplashMap, so the new program (not sure what it’s going to be called, maybe I’ll just go for obvious and name it SplashMap 2) can be built off of it fairly easily.

So what are the planned features? Here’s a sample:

  1. Project-based editing as opposed to Map-based editing. You now create a project that will encapsulate all of your scripts, maps, sprite textures, entities, and scenery objects into a single coherent whole.
  2. Hierarchy: Everything in a project is the child of something else. This allows you to create some very complex objects quite easily. Want to design a roving super-robot with articulated limbs (each limb is a sprite), well now you can.
  3. Redesigned file format. Designing my own text format was just plain stupid. New version will use XML. XPath makes it happen :).
  4. Unified entity/tile design. Tiles and entities are effectively the same thing, except that entities have names so you can access them. You will now be able to right click on any tile hierarchy and convert it to an entity, or vice versa.
  5. Integrated Lua scripting: Now we get to the real meat of the changes. Every map has a looping Lua script, every entity has a looping Lua script, with the C++ engine providing enough glue (collision detection and such) that there is no need to touch the C++ at all, or minimally at best. I’ll be able to build apps like lightning.

So there you go, those are the major changes on the burner right now. It looks like a lot, but I’d be surprised if it takes me longer than a month to finish them all up.

And yeah, I realize that there are a lot of programs out there that do very similar things, such as Gamemaker and Multimedia Fusion. I thought about just using those, but there are a few reasons that I want to make my own engine. Reason number one is, I enjoy it. Making editing tools is strangely relaxing for me. Reason number two, I don’t want to lose platform independence. I’m designing both the tool and the engine to port without effort to Windows, Linux, and MacOS, or pretty much anything else that supports OpenGL and SDL, something that the commercial game editing packages don’t really seem to provide. And the final reason is, I want the control. By making my own tools, I can design them around the way I work, and maximize my own productivity for the small upfront cost of the tool development itself. It doesn’t need to be everything to everybody, just everything to me. Of course, I’ll try to keep things fairly intuitive anyways, on the chance that somebody should find it useful. So both the editor and the engine will be freely available here when they are complete. I don’t know if I’m going to release the source or not, but the binaries will most definitely be free for all to use.

After that, it’s back to game development. Stay tuned.

Filed under: Tools - Comments (0)

Now this is just cool

Oct 31, 2007@4:23pm

I got my first ever incoming link, and it’s from RUSSIA. Yes, apparently someone in Russia thought that Roach Roundup was cool enough to write about.

According to the Babelfish supplied translation, Roach Roundup is a “small, but sufficiently amusing toy”. The translation of the plot, like anything babelfish generated, is fairly amusing to read as well. I’d link it, but babelfish doesn’t seem to allow that.

Many thanks to the reviewer, this really made my day :).

The review: Логические таракашки

Filed under: Games,Roach Roundup - Comments (3)

Roach Roundup Updated

Oct 28, 2007@12:35am

Roach Roundup Title Screen
Roach Roundup has been updated to include music and all the other little things I left off in the initial month period because I ran out of time. You can snag it from the “Games” section on the left.

Filed under: Games,Roach Roundup - Comments (1)

Gimp 2.4

Oct 26, 2007@5:25pm

Sing for the GimpI’ve heard it said that a true artisan never blames his tools for his shortcomings. I say that better tools let you get more work done faster and with less aggravation, and in that vein I can only say FINALLY to the release of Gimp 2.4.

A quick qualifier here. I am not a Photoshop hater. I’m just cheap. Moving on…

Gimp has finally fixed my largest beef with the software, and a cause of much consternation with my image editing, especially digital paintings. Previously, when zooming your canvas in and out, the Gimp would simply do a point sample on the image, causing all kinds of chunky artifacts and making it extremely difficult to do anything with a canvas scaled below 50%. No more. The new Gimp finally scales canvases smoothly when zoomed, something that I wish would have been implemented a long time ago.

Besides the ability to see your canvas at scales smaller 100%, a quick glance at the toolbar on the side reveals quite a few new tools. There are a couple of new selection modes, none of which I think I will use, and a Photoshop style healing brush. Neat.

But the real kicker for me in the tools department are the new transformation tools. Any selection region or layer can be squished, scaled, rotated, perspective distorted, etc, using easy drag tabs. Which I think is just awesome. The previous transformation tools were almost universally difficult to use, some of them even required you to put in numbers and kind of guess what the result would look like. WYSIWYG tools like this are a great addition to the program.

One thing that I’m really curious to test out is memory consumption. The previous Gimp did a fairly poor job of managing memory, with layers taking up RAM according to the number of pixels on the layer, instead only storing portions of the layer that weren’t empty. I hit a few walls on larger images that required me to cut some corners and scale back a bit before, hopefully those times are a thing of the past now.

I haven’t really had a chance to get any hands on time with it yet, over the weekend I plan to do some coloring work to get used to the interface changes and such. Check back Monday-ish or so, I should have some new color work in the gallery by then.

Filed under: Stuffs - Comments (0)
Older Topics »