Changelog

EmptyCreate Game Engine Release 5

Release 5 of the EmptyCrate Game Engine was just posted.

This release addresses a single bug: the drupal Creative Commons Lite 6.x-1.2 module has a function name change that breaks the EmptyCrate Game Engine.

As always, check out game.emptycrate.com for examples.

Swig Starter Kit 0.0.3 Released - New Language Support

Release 0.0.3 of Swig Starter Kit was just released.

This release adds support for the following languages:

  • Perl
  • Python
  • Ruby
  • Java
  • C#

There is also preliminary support for PHP added, the PHP module builds but I cannot get it to load. Anyone with experience with this, please help if you can.

Swig Starter Kit 0.0.2

Release 0.0.2 of Swig Starter Kit was just released.

This release sees the addition of template usage examples, including custom function templates and STL usage.

Using a SWIG template declaration we are able to instantiate a specific template and use it from our script code.

//SWIG Code
%include <std_string.i>
%include <std_vector.i>
%template(String_Vector) std::vector<std::string>;

We can now use the std container classes with our Lua code:

 

Swig Starter Kit 0.0.1

I just put up the first release of a new project, Swig Starter Kit, on google code.

The Swig Starter Kit starts with the sample C++ class:

class Script_Interface
{
  public:
    Script_Interface();
    ~Script_Interface();
 
    int get_a_value();
};

And shows how you can go about utilizing that C++ class from Lua:

require ('SwigStarterKit');
 
var = SwigStarterKit.Script_Interface();
print (var:get_a_value());

EmptyCreate Game Engine Release 4

The latest release of the EmptyCrate Game Engine was made last night. Changes include:

  1. New Iconed pointers which use spacebar to toggle
  2. Black background and tweaked modal dialogs settings
  3. Moved inventory to left side to make it fit on an average screen better
  4. Add mouse-over for item names
  5. Disabled object glow effect

As always, check out game.emptycrate.com for examples.

EmptyCrate Game Engine Release_3

The next release of the EmptyCrate Game Engine has been released.

Changes:

  • Fixed minor game-item scripting problems.
  • Added subtitle feature.

This release also notes the release of the 7th game written using the engine. All games that I'm aware of are available at game.emptycrate.com.

Syndicate content