axmol/tools/console
halx99 714d814288 Improve android setup tools
- Rename ANDROID_SDK to ANDROID_SDK_ROOT, refer to: https://developer.android.google.cn/studio/command-line/variables
- CMake: Use ndk in sdk_root/ndk/xxx/
2022-08-06 22:02:58 +08:00
..
bin Sync axis cmdline stat default value [skip ci] 2022-08-06 18:26:47 +08:00
plugins Improve android setup tools 2022-08-06 22:02:58 +08:00
toexec Rename build toolchain. 2022-07-07 15:29:23 +03:00
.gitignore Finally fix .gitignore [skip ci] 2022-07-07 15:51:47 +03:00
README.md Rename build toolchain. 2022-07-07 15:29:23 +03:00

README.md

axis-console

Vision of axis-console

A command line tool that lets you create, run, publish, debug, etc… your game. It is the swiss-army knife for axis.

This command line tool is in its early stages.

Examples:

# starts a new project called "My Game" for multi-platform

$ axis new MyGame -l cpp -p org.axis.mygame

$ cd MyGame

# Will deploy the project to device and run it
$ axis run -p android


Devel Info

Internals

axis.py is an script whose only responsability is to call its plugins. axis.bat will invoke axis.py on windows axis will invoke axis.py on Mac OS X and linux

To get a list of all the registered plugins:

$ axis

To run the "new" plugin:

$ axis new

Adding a new plugin to the console

You have to edit bin/axis.ini, and add the class name of your new plugin there. Let's say that you want to add a plugin that deploys the project:

# should be a subclass of CCPlugin
project_deploy.CCPluginDeploy

And now you have to create a file called project_deploy.py in the plugins folder. A new, empty plugin, would look like the code shown below:

import cocos

# Plugins should be a sublass of CCPlugin
class CCPluginDeploy(cocos.CCPlugin):

		# in default category
        @staticmethod
        def plugin_category():
          return ""

        @staticmethod
        def plugin_name():
          return "deploy"

        @staticmethod
        def brief_description():
            return "Deploy the project to target."                

        def run(self, argv, dependencies):
            print "plugin called!"
            print argv

Plugins are divided by category, depending on it's function: project, engine, ...

The plugins of project is in default category, it's an empty stirng "".

Generate Executable

Now you can use the toexec/build_console.py for generating a executable file of cocos command.

Environment Requirement

  • Python 2.7 (2.7.5 is well tested)
  • PyInstaller (PyInstaller 2.1 is well tested)
  • Necessary PATH environment for python & pyinstaller.

Attention:To keep compatible with both Windows-32bit & Windows-64bit, please install 32bit python on Windows.

Steps

Run python build_console.py in command line. Then the executable file & necessary files will be generated in toexec/output/PLATFORM.

The usage of build_console.py:

usage: build_console.py [-h] [-s SRC_PATH] [-d DST_PATH]

Generate executable file for axis-console by PyInstaller.

optional arguments:
  -h, --help            show this help message and exit
  -s SRC_PATH, --src-path SRC_PATH
                        Specify the path of axis-console.
  -d DST_PATH, --dst-path DST_PATH
                        Specify the path of output.

Using the Executable

The generated executable files can replace the source code of axis-console.

To fit the limitation of the axis-console implementation. The generated executable files should located at ENGINE_PATH/tools/console/bin.

Then you can use the executable file as same as the source code.

Commands Required

Please see this issue