Well, I’m finally back on the development front.

It’s been a hectic summer of study and exams…finally over. I did however get a few things I’ve been meaning to do.

Quantum Star SE is now moving forward again, there will a delay before another release since I have been doing a little spring cleaning in the code – something I probably mentioned before regarding how the game is structured. For starters the original classes have been revisited and had a makeover. The game now uses an MVC (model-view-controller) design which separates data from logic, and logic from presentation. The result is a pretty neat setup which will do a lot to keeping the game maintainable and readable. It also means another cut in RAM use (one of the current development goals) since we only ever require a single instance of most of these classes, and they are only instantiated if requested by a developer’s client code.

Many sections of code are now being properly documented under the phpDocumentor rules. The class references to global objects, and the use of constructors to setup data have been eliminated (they were only limiting, and pointless). The code has also been restructured enough that a shift to PHP5 should be a simple exercise. (In fact a PHP5 version is in planning to make one available).

Some new game features were added in draft form, including devices, clans, and player planets. Still a lot of work to get this up to standard.

Matt has also made some moves on our Base, Q-Site. It now implements the database functions within a class, and runs off of ADODB-Lite (a faster, less RAM intensive version – better for shared hosting). Last week I implemented a small error class to manage game-detected fatal errors, which also (after much delaying) removes any need to reference Line and File as parameters. The DB class now falls back on more readable function names – a departure from SE, but I think it’s fairly easy to pick up when someone isn’t experienced enough to follow everything:

$db->select(‘sql do select’);
$array = $db->read();
$multi_array = $db->readall();
$db->execute(‘update/delete/insert something’);

I think a new version of Q-Site should be ready in about a month – for the moment QS3 will continue developing off the last version.

A few other things are in the pipeline, though largely deferred until I complete the next QS release (with combat). These include the Admin Panel, and Module Editor, an AuditTrail Class and analysis tools for the AP, an updated version of the NavLink classes (which allow dev’s authorise a URI in-line, thereby allowing restricted access to game, and a baseline against which to analyse incoming requests and query data).

On more general terms.

I am also involved in a new PHP strategy game called Blue Sea World, which started active development this month. There are a few interesting facets of the game, including one developer who aims to create a 3D Client to replace a standard browser. Be interesting to see how that turns out if its workable. I’ll start some preliminary coding for an initial version with the lead dev, Azure, shortly. QS and SR are still up front as a priority, but I’m hopeful the recent code changes will have made development a lot more efficient (It would certainly give me a little more flexibility to stay on schedule).

QS 3.0.0-0.10 should be released within a month.

Related posts:

  1. The great UniGen update…