This is the Cocos2d-x programmers guide. It is licensed under the
Creative Commons BY-SA
license. You can find it here
blank.md
- a blank page that is used when building print versionsbuild.sh
- BASH script that build web and print versions, deploys to serverchapters
- markdown content and imagesmkdocs.yml
- MKDocs configurationoutline.md
- outline of what this guide covers (may be out of date)README.md
- this file :-)theme
- custom theme for web version
- mkdocs: http://www.mkdocs.org/
- Bash 4.0: brew install bash
- Grip - https://github.com/joeyespo/grip
- PrinceXML - https://princexml.com
cd <where you cloned this repo>/programmers-guide
- run
mkdocs serve
Any changes made while mkdocs serve
is running are automatically rebuilt.
cd <where you cloned this repo>/programmers-guide
- run
build.sh
Content is build in docs
and deployed to site
. This script also builds the
ePub and PDF versions as well as deploys out to staging (slackmoehrle.github.io)
and http://www.cocos2d-x.org/programmersguide
- make sure to break lines at 80 columns.
- chapters are actual book content while appendix are installation and tools
- via a
pull request
. Please do not edit chapters directly. - If you are creating a new chapter, please don't make it feel and sound like an API Reference. This is a guide suited for new users (even though advanced users will benefit too). Please tell a story about your content. We want to make this engage the user. If in doubt: Read Chapter 2 and notice it feels like a chapter in a book.
- Contact me via e-mail or on the forums to discuss what you want to add, edit, etc.
drafts
are chapters that are under construction or review and not yet approved for the guide. (i.e new material). If you are adding to an existing chapter or appendix, please do so via a pull request.- each chapter has a markdown file and 3 image directories associated with it.
The image directories are
-web
,-print
and-img
.-web
is properly sized images for displaying on the web.print
is properly sized images for displaying in the epub and pdf.-img
is were to put the original images (also displayed when viewing from GitHub). - the
build.sh
script does copying and renaming of directories during the build process since the markdown files expects files at a specific path. Take a look. - If a chapter does not have any images there is no need to create directories for it.
- since I started this I know a lot more and want to clean up the build script to be generic and sub functions instead of a single long script. I plan to do this in the next version.
- we will be moving away from
pandoc
in favor ofPrinceXML
to build the PDF. - we will be using
grip
to generate HTML output for the print versions.
- report via GitHub issues: https://github.com/chukong/programmers-guide/issues
- or clone and submit a pull request to fix it: https://github.com/chukong/programmers-guide/pulls
auto
is used for creating local variables.using namespace cocos2d;
is used to shorten types.- each chapter has a compilable source code sample to demonstrate concepts.
Outline.md - outline of what the guide will cover (may be out of date)
- Appendix A - Prerequisites
- Appendix B - Android with Terminal Installation and Setup
- Appendix C - Android with Eclipse Installation and Setup
- Appendix D - iOS Installation and Setup
- Appendix E - Mac OSX Installation and Setup
- Appendix F - Linux Installation and Setup
- Appendix G - Win32 Installation and Setup
- Appendix H - WP8 Installation and Setup
- Appendix I - Command-Line Integration Project
- Chapter 01 - About
- Chapter 02 - Basic concepts and essentials
- Chapter 03 - Sprites
- Chapter 04 - Actions
- Chapter 05 - Building and Transitioning Scenes
- Chapter 06 - UI
- Chapter 07 - Other Node Types
- Chapter 08 - Event Dispatcher
- Chapter 09 - 3D
- Chapter 10 - Lua
- Chapter 11 - Services
- Chapter 12 - Physics
- Chapter 13 - Audio
- Chapter 14 - Advanced Topics