rapidgamekdl
v1.0.693
Published
A cross-platform commandline tool that prebuilds cocos2d-x libraries for Windows, Mac, Linux, Android and iOS. Also a game templating system.
Downloads
11
Maintainers
Readme
__________ .__ .___________
\______ \____ ______ |__| __| _/ _____/_____ _____ ____
| _|__ \ \____ \| |/ __ / \ ___\__ \ / \_/ __ \
| | \/ __ \| |_> > / /_/ \ \_\ \/ __ \| Y Y \ ___/
|____|_ (____ / __/|__\____ |\______ (____ /__|_| /\___ >
\/ \/|__| \/ \/ \/ \/ \/
RapidGame is a commandline tool for Mac, Windows and Linux which:
Prebuilds cocos2d-x libraries for Windows, Mac, Linux, iOS and Android for multiple architectures and configurations, virtually eliminating the need to ever rebuild.
Creates cross-platform game projects from templates for a variety of game engines. Supports cocos2d-x, Unity, Corona and Appcelerator Titanium. The default game template creates a simple Breakout clone with a menu and game scene.
Prefer somebody explaining and showing it? Check out the overview video.
Create a Game in Under 30 Seconds
You'll first need to install Node.js.
Then, install RapidGame:
sudo npm install rapidgame -g
Or, on Windows leave off the sudo
:
npm install rapidgame -g
And, create a cocos2d-x game named "HeckYeah" (run this as administrator on Windows):
rapidgame create cocos2dx "HeckYeah" org.myorg.heckyeah
Or, a Unity game named "ZombieMatrix":
rapidgame create unity "ZombieMatrix" com.mycompany.zombiematrix
More:
rapidgame --help
About Prebuilding
The command to prebuild cocos2d-x static libraries is:
rapidgame prebuild -s path/to/cocos2d-x/
When the command is finished, you'll have a directory (~/.rapidgame
on Mac or Linux, and C:\Users\[USERNAME]\.rapidgame
on Windows) with headers, java files, make files and prebuilt library files for all buildable architectures and configurations available on the current development platform.
You can specify which platform you want to prebuild:
rapidgame prebuild mac -s path/to/cocos2d-x/
rapidgame prebuild ios -s path/to/cocos2d-x/
rapidgame prebuild windows -s path/to/cocos2d-x/
rapidgame prebuild linux -s path/to/cocos2d-x/
rapidgame prebuild android -s path/to/cocos2d-x/
Or refresh the headers:
rapidgame prebuild headers -s path/to/cocos2d-x/
Use a different path for the destination libraries folder:
rapidgame prebuild -d custom/destination/path/
The following command uses a custom cocos2d-x source root and places the resultant libraries in ~/my-cc-libs
:
rapidgame prebuild -s path/to/custom/cocos2d-x -d ~/my-cc-libs
You can also specify a custom directory prefix where RapidGame stores it's files:
rapidgame prebuild --prefix C:\somewhere
Create a symlink in the current directory to the current static libraries:
rapidgame init .
Or specify which prebuilt files to use:
rapidgame init . -d ~/my-cc-libs
Or show all the directories RapidGame might use:
rapidgame show
Rapidgame lives here: /Users/nat/.rapidgame
Prebuilt headers and libs path: /Users/nat/.rapidgame/lib
Headers have been copied: YES
Libraries have been built: YES
Development Platforms
RapidGame can be used on any platform that is capable of running Node.js.
The cocos2d-x library prebuilder currently works on the following development platforms:
- Mac
- Windows
- Linux
Requirements
Mac: Xcode 5+ and Node.js.
Windows: Visual Studio 2012 or newer and Node.js. Read the Windows Notes for additional notes you should be aware of.
Linux: run cocos2d-x/build/install-deps-linux.sh
and ensure that Node.js is installed.
Android (any platform): you'll need to install the Android SDK and NDK, then run the SDK Manager and install the latest Tools, Platform Tools and Build-tools. Finally, make sure that the environment variable NDK_ROOT
is the path to the NDK.
Windows Notes
- The
rapidgame create
orrapidgame prebuild
command must be run as administrator. This allows symlinks to be properly created. - If you have freshly installed Visual Studio, then you will need to run it once in order for it to download the necessary build tools.
- To prebuild Android libraries, please set the
NDK_ROOT
environment variable. You can do this permanently for all command prompt sessions by going: Computer > Properties > Advanced System Settings > Environment System Variables. Confirm this withecho %PATH%
or just try to runndk-build
from any directory.
Updates
- Nov 3, 2016: Rapidgame node modules are lighter weight and no longer requires installing git. (Removed the feature of automatically downloading cocos2d-x source in favor of using the source folder specified by the user.)
- Jan 27, 2016: Linux support. Can specify cocos2d-x source folder. Simplified Android prebuild so it doesn't require cygwin on Windows.
- Aug 17, 2015: Fixes for Visual Studio 2015.
- Aug 11, 2015: On Windows, the path to MSBuild.exe, Lib.exe and VCTargetsPath can be set manually in case they cannot be automatically located.
Eliminate Grunt Work
RapidGame provides:
- Tested game project templates for cocos2d-x / cocos2d-js, Unity, Corona and Titanium
- A cross-platform game project creator
- A library prebuilder for cocos2d-x
The templates have:
- Cross-platform project files
- Resolution / ratio-independence
- Viewport setup
- Menu & Game scenes
- Sprites
- Custom TTF fonts
- Sound
- Music
- Physics
- HTTP game servers (HTML5-based platforms)
The project creator makes a copy of one of the templates, does a search and replace on the game title & package name, then installs any required modules. Viola. Your own rapidly-created game ready to go. Here is some example output from running the project creator:
$ rapidgame create Corona "SwordBall" org.myorg.swordball
Rapidly creating a game
Engine: Corona
Template: TwoScene
Copying project files
Setting project name: Sword Ball
Setting package name: org.myorg.swordball
Done
Congratulations on creating a Corona game!
Run it by opening the `main.lua` file in the Corona Simulator.
Ready to code? Start with the `main.lua` file.
The library prebuilder creates static libraries that virtually eliminate build times for the cocos2d-x engine. With hundreds of source files to be compiled, building cocos2d-x for just one platform can take at least five minutes. This can be a real time sink, especially when switching from the simulator to device triggers a rebuild.
The prebuilder can use a custom cocos2d-x root folder, or automatically download, patch and prebuild the latest version of cocos2d-x. It will then be possible to compile and link native cocos2d-x games in seconds. Even better, the project creator will absolutely symlink to the location of the prebuilt libraries so that game projects stay lightweight and can be moved easily. A regular cocos2d-x game project directory can be half a gigabyte or more. A RapidGame project is a couple megabytes.
What's the difference between a RapidGame project and a "normal" cocos2d-x project?
A project created by RapidGame uses exactly the same underlying API as cocos2d-x / cocos2d-js. One can still get the running scene, for example, like this cocos2d::Director::getInstance()->getRunningScene()
(C++) or this cc.director.getRunningScene()
(Javascript).
RapidGame extends upon the cocos2d-js API with the Game object. This object provides methods which are commonly used in game development, but were missing from cocos2d-js at the time of writing. Game.rand(5)
, for example, returns a random integer between 0 and 5.
While the underlying API stays the same, the file / folder structure of a project created by RapidGame is different than that of a "normal" cocos2d-x project. A normal project is created with the cocos
command:
cocos new -p com.mycompany.mygame -l js -d MyGame
This results in a project folder approximately 500 MB which contains all the files necessary to build cocos2d-x from scratch. Subfolders include:
frameworks/ - All cocos2d-js and cocos2d-x source files, as well as project files for the game
res/ - Game assets
runtime/ - An executable which can run the iOS Simulator from the commandline
src/ - The Javascript files
tools/ - Miscellaneous tools
By contrast, a RapidGame project is only 2 MB (because it symlinks to the prebuilt cocos2d-x libraries) and has a more organized folder structure:
Assets/ - The game assets and Javascript files
lib/ - A symlink to the prebuilt cocos2d-x libraries
Projects/ - The project files for the game
Server/ - The server which provides an API and serves files for the HTML5 version of the game (cocos2d-js only)
Inside the project files there are other differences. Take the Xcode project as an example. The normal cocos2d-x project is setup to build all of cocos2d-x, depends on several sub-projects (Targets > Build Phases > Target Dependencies) and references several User Header Search Paths (example: $(SRCROOT)/../../js-bindings/cocos2d-x
) within the frameworks
folder.
The RapidGame project is more efficient, relying on the symlinked lib
folder. Instead of depending on sub-projects and rebuilding all of cocos2d-x, it uses two Other Linker Flags to include the prebuilt cocos2d-x libraries (-lcocos2dx-prebuilt
) and specifies an additional Library Search Path in which to find them: $(SRCROOT)/../lib/cocos2d/x/lib/$(CONFIGURATION)-iOS/$(PLATFORM_NAME)
. User Header Search Paths also use the symlink, $(SRCROOT)/../lib/cocos2d/x/include/cocos
, so that by simply swapping the lib
folder one can upgrade to a newer prebuilt version of cocos2d-js/x.
Custom cocos2d-x/js Projects
If you are just using cocos2d-x or you have your own custom project layout, you can still use the prebuilt libraries. Use this command to create a symlink to the libraries directory:
cd MyGame && rapidgame init .
Then setup your Xcode target to reference the headers. Example:
USER_HEADER_SEARCH_PATHS = $(inherited)
$(SRCROOT)/../lib/cocos2d/x/include/cocos
$(SRCROOT)/../lib/cocos2d/x/include/cocos/2d
...
And the libraries:
LIBRARY_SEARCH_PATHS = $(SRCROOT)/../lib/cocos2d/x/lib/$(CONFIGURATION)-iOS/$(PLATFORM_NAME)
Then link with the library:
OTHER_LDFLAGS = -lcocos2dx-prebuilt
Create Your Own Templates
It's possible to create your own game templates. Here's the step-by-step instructions:
Create your game directory. If your game is called "ZombieMatrix", name the directory
ZombieMatrix
.Use the name of your game throughout your game project. RapidGame will automatically search and replace the title in most types of source and project files.
If you prefer for a file or directory renamed, make sure it starts with your game's title. For example, if you have
ZombieMatrix.xcodeproj
it will get changed toMyNewGame.xcodeproj
.Whenever there is an instance of your package name, replace the beginning with
com.wizardfu.
, lowercase the title and remove any punctuation, socom.mycompany.zombierevolution
becomescom.wizardfu.zombierevolution
. This will get changed by the templating system when creating new game projects.Copy your game template to the
templates/<engine>
directory of RapidGame. On Mac / Linux this is/usr/local/lib/node_modules/rapidgame
. You can use thenpm prefix -g
command to determine where Node modules are installed on your system. If you're on Mac OS X, the template is for Unity and it is called "ZombieMatrix" then the final directory would be/usr/local/lib/node_modules/rapidgame/templates/unity/ZombieMatrix/
.Your template is now ready for testing. Try it out like this:
rapidgame create <engine> MyNewGame com.mycompany.mynewgame -t "ZombieMatrix"
.
Contributing
Submit pull requests or open issues as you see fit.
License
RapidGame is licensed under the MIT license.