Big ol update.

A little bit of time has passed since I’ve written an update for this project. It hasn’t been halted in any way, but I’ve found that the further on I get in life (hooray for being 30!), the less time that there is to do things (like updating my site…) that don’t involve maintenance, job-related or game-development related things. But, we march on.

Over the last few months, I’ve touched on things ranging from threading within Python, to command line functionality, to deeper digs into the world of User Interface construction, along with building up knowledge in PHP, Javascript, Node.JS and sockets.IO. User Interface design will come later once things are actually working.

One of the other things I’ve been digging into in relation to this game is artificial intelligence. Eventually, I’m going to need some kind of computer-guided opponents within the races, and it seems like it will be extremely fun to play with. I’m planning on keeping them fairly basic (fixed rays heading out in specified directions) but will branch out from there once I have a workable solution. Whether this yields improvements or new functionality within other places, we’ll see. 🙂

Improvements have also been made in the vehicle leveling functionality. I’ve been bouncing between basing rotation correction on actively adjusting the rotation of the vehicle within the race and functionality that alters the rate of rotational acceleration. I’ve found the benefits of altering the acceleration rate of rotation slightly outweighs having scripted control over the rotation as it feels more “accurate”. Just need to bring the wobble-to-resting-state behavior under control. My grand plan for the vehicle leveling functionality is to find a way to merge the behavior from the two methods to have control and still give the physics system some say in what occurs.

I’ll be working on a video update next so y’all can see what’s going on instead of wondering and waiting with bated breath.

Python, sockets and the Game Engine!

I’ve been playing with the game networking tutorial in the 2nd edition of the Blender GameKit and I found out that in it’s current form, it does not work. After banging on it for a bit, I had seperate scripts for the Game Engine working, a server.py and a client.py with a couple of default values that I had thrown in.

After getting a couple instances of Blender talking to each other (on the same machine for the time being), I felt that it would be better if everything was in one script, and seperate functions were called when needed. That’s what I’ve done, as far as client/server setup and passing data. 🙂

Right now the updateData function only passes location data for two objects, OBClient and OBServer. To use this script in it’s current form , two files will need to be created: server.blend and client.blend, where both objects will need to be present. On each object, there are three sensors required, one always that triggers once, an always that triggers constantly, and a spacebar keyboard sensor.

The always sensor that triggers once is set to run the “universal_networking.networkInitServer” or “universal_networking.networkInitClient”, depending on which one you’re wanting to run. The constantly-triggered always sensor is set to run “universal_networking.updateData”, which exchanges object location data with the other party. The spacebar sensor will need to make it’s way to a Motion controller, where the object is moved in some fashion.

When dealing with connecting the spacebar, only one will need to be connected on each file. For example, on the server.blend file, only OBServer needs to have the spacebar sensor moving anything. Vice versa with the client.blend file.

I’ll be updating this script once I have a method for properly moving different types of data across. For now, enjoy!

DT

networking_universal.tar.gz

networking_universal.zip

Particle Panel and Import Script for Blender Game Engine : Version Alpha 2

The DTScripts Particle Database is a framework that (hopefully) makes the process of creating particle effects a little easier.

My script (DTS_ParticlePanel, a Blender Addon) starts off in the Particles panel and presents you with options to create four types of elements, along with a panel for database control. You’ll need to create new elements if you’re dealing with a fresh file. The “material” designation will be changing in a future release.

Full instructions are included in the zip file. I also have a demo video of the script in action. If you have any crits or comments after trying this out, please feel free to let me know by sending me an e-mail.

This is licensed under the GPL.

Download it here!

tar.gz archive available

Effects Combo for Blender Game Engine

The DTScripts Effects Combo is a framework that works with the data pushed by the Particle Panel.

The alpha version of the Effects Combo file is something that I had created before work started on the Particle control panel, as a way of simulating the action of a fishtank draining. At this moment, it reads from the database and takes in information from the material elements that it collides with. Right now, you can control (in the “Material” settings within the Particle Panel) whether the material you’re dealing with is “wet” or “dry”. “Wet” will use the fishtank effect. “Dry” will just give off a fragment reaction.

To use this, open the script in Blender’s text editor, then select it as the script to be called in the python controller on your materials, projectiles and static elements.

Full instructions are included in the zip file. If you have any crits or comments after trying this out, please feel free to let me know by sending an e-mail.

This is licensed under the GPL. Links in this post now go to Version Alpha 2.

Download it here!

tar.gz archive available

 

GLSL Globe

This globe is from my practice and experimentation with GLSL shaders within Blender. The textures used are from Wikimedia Commons.

The mouse controls are still under development.

Controls:

W – Forward
S – Back
Q – Spin Earth West
E – Spin Earth East
R – City Light / Night Map Light Focus Up
T – City Light / Night Map Light Focus Down
F – City Light / Night Map intensity Up
G – City Light / Night Map intensity Down

Download it here! (Windows only for the moment.)