I have created an eclipse project template, which contains an SDK project, with a NDK C++ bindings ( done via ‘javah’ build step ), combined with Cocos2dx helloworld project. I have used it as the base for 2 projects, and figured I would share. https://github.com/onedayitwillmake/EclipseAndroid_NDK_SDK/tree/cocos2dx
Archive for the ‘gamedev’ Category
Eclipse template project with cocos2dx
By onedayitwillmake in C++, eclipse, gamedev, HowtoBulletML running on iOS
By onedayitwillmake in gamedev, preview, sourcecodeBulletML is an XML like markup language created to describe bullet barrages seen in shooters. It allows you to describe complex bullet patterns in simple XML files, then parse them and let it run. Very easy to create nice boss patterns In this video is my first working attempt at getting it to run on [...]
Video of 2.5D Javascript/WebGL PortalGun
By onedayitwillmake in chuclone, gamedev, previewI’m in the middle of adding a Portal gun to chuclone - There are still a few kinks in it, namely related to determining the side of the object the Portal gun hits, and converting the 3D position of your shot into 2D cordinates so that it shoots exactly where you aimed. However I have it far [...]
ChuClone Preview
By onedayitwillmake in gamedevUPDATE: The game is now live at http://chuclone.com ChuClone is an (about to be released) open-source HTML5 / WebGL / Box2D based game. With a built in level editor to allow users to create as well as play each others levels. This is me playing the SunsetMountain level
Creating Realtime Multiplayer Games using Node JS
By onedayitwillmake in gamedev, javascriptA few months ago at work, we decided to build a realtime multiplayer game for the web, and we chose to go with Node.js for our multiplayer server. It was a pretty strong success, and was up running for several months without a single crash or restart of the Node.js process. We decided to write [...]
A Finite State Machine implementation for use with Javascript games
By onedayitwillmake in gamedev, javascriptCurrently I’m working on a new Javascript/WebGL game called ChuClone. It’s been a lot of fun to work on so far. Having a good editor has been a key in that, as it allows you to write javascript in a more application like style, than strictly a series of DOM manipulation functions. For this game [...]
Component based game entities in javascript
By onedayitwillmake in gamedev, javascript, snippetI’m creating a javascript/webgl based game and would like you guys to take a look at the current entity component system which I created for it, and perhaps weigh in some opinions. On caveat I don’t like is that, sometimes a component needs to call the attachedEntities version of a function it has overridden. For [...]