Bullet cocos2d-x Creating a project from scratch

Creating a project from scratch

Contents

[hide]

Creating a project from scratch using Visual Studio (any version)

Download and install Bullet

Download and install cmake

  • The recommended way to start a new project from scratch is using cmake. Download cmake from http://cmake.org and install it.

Run CMake-gui

  • Start CMake-gui
Image:start_cmake.PNG
  • Choose the location where you unzipped the Bullet source code, and where you build the binaries for your own project and press Configure
Image:cmake_step0.PNG
  • Choose the compiler, such as Microsoft Visual Studio 2008
Image:cmake_step1.PNG
  • Review the settings and press Configure again
Image:cmake_step2.PNG
  • Make sure the Run-time library is the same as your project (by default it is set to Run-time library DLL) and press Generate
Image:cmake_step3.PNG
  • Optionally, you could open the generated project solution (in our case C:\develop\tutorial\BulletBuild\BULLET_PHYSICS.sln) and build the library and demos, but this is not necessary

Create a new Visual Studio project

  • Now create your new project, say a Win32 Console Application in c:\develop called BulletTestApp, located in c:\develop\BulletTestApp:
Image:step1.PNG
  • Hit Finish
Image:step2.PNG
  • Just try to build it without any change
Image:step3.PNG
  • Now add the generated projectfiles for the Bullet libraries, BulletCollision, BulletDynamics and LinearMath:
Image:step4.PNG
  • Browse to the folder where you selected CMake-gui to build the binaries, then select src/BulletCollision/BulletCollision.vcproj, and same for src/BulletDynamics/BulletDynamics.vcproj and src/LinearMath/LinearMath.vcproj:
Image:step5.PNG
  • Make sure to make your program dependent on the Bullet libraries, right click on your project, select 'Dependencies'
Image:step6.PNG
  • and select the Bullet libraries:
Image:step7.PNG
  • Now set the header include path to the 'src' folder within Bullet source code, for example c:\develop\bullet-2.76\src in our case. Right click on your project, select 'Properties'
Image:step8.PNG
  • Goto C/C++, Additional Include Directories, and type/browse to the Bullet/src folder, in our case c:\develop\bullet-2.76\src
Image:step9.PNG
  • Repeat those steps for all configurations (Debug, Release etc), and start programming
Image:step10.PNG
  • You might need to enable the Link Library Dependencies setting for all projects, in the linker settings (see below for Visual Studio 2010 and newer):
Image:link_library_dependencies.png
  • Visual Studio 2010: the above does not apply, use referencing instead. Go to your project's property pages. In the left panel, select Common Properties->Framework and References. Hit the Add New Reference button a few times and add all the bullet libraries you need (in this case, at least BulletCollision, BulletDynamics and LinearMath). When you get the error The project file has been moved renamed or not on your computer, check the References for the newly added project. Removes references to 'ZERO_CHECK'.


Alternative, manual method

If you do not want to use cmake, here is another simple method. Assuming you have unzipped Bullet in C:\bullet-2.75\, adjust all pathnames if necessary:

  • Create a new, empty C++ project (File > New > Project: Choose Project types > Visual C++ > General > Empty Project)
  • Add a new C++ file (e.g. "main.cpp") to your project and copy the code from the Hello World page into it and save it.
  • Open the properties of your project (in the Solution Explorer right-click the project name and select Properties, or in the Property Manager double-click Debug|Win32):
  • In Configuration Properties > C/C++ > General > Additional Include Directories add:

    highlight: Unknown source file extension "dos".

You need to specify a language like this: <source lang="html">...</source>

Supported languages for syntax highlighting:

4gl, a4c, abp, ada, agda, ampl, amtrix, applescript, arc, arm, as, asm, asp, aspect, au3, avenue, awk, bat, bb, bib, bms, boo, c, cb, cfc, clipper, clp, cob, cs, css, d, diff, dot, dylan, e, erl, euphoria, exp, f77, f90, flx, frink, haskell, hcl, httpd, icn, idl, ini, inp, io, j, java, js, jsp, lbn, ldif, lgt, lisp, lotos, ls, lsl, lua, ly, m, make, mel, mib, miranda, ml, mo, mod3, mpl, ms, mssql, n, nas, nice, nsi, nut, oberon, objc, octave, oorexx, os, pas, php, pike, pl, pl1, pov, pro, progress, ps, ps1, psl, py, pyx, q, qu, r, rb, rexx, rnc, s, sas, sc, scala, scilab, sh, sma, smalltalk, sml, snobol, spec, spn, sql, sybase, tcl, tcsh, test_re, tex, ttcn3, txt, vb, verilog, vhd, xml, xpp, y

  • Recursively add all .cpp files from the Bullet/src folder to your project
  • Build and debug your project.

Creating a project from scratch using XCode

Assume we downloaded bullet-2.x.tgz and unzipped it into a folder /Users/name/develop, we will have for example: /Users/name/develop/bullet-2.76

  • Create a new C++ console application, using XCode:
Image:newxcodeproject.png
  • put it in next to bullet-2.x, in the develop folder:

Image:developfolder.png

  • Open the main.cpp file and add #include "btBulletDynamicsCommon.h":

Image:addcommoninclude.png

  • Edit the project settings for All Configurations

Image:editxcodeprojectsettings.png

  • Add the bullet-2.x/src folder:

Image:addbulletsrcinclude.png

Image:addbulletsrcinclude1.png

  • Now build the project:

Image:buildxcode.png

  • Update 12/17/2010: If you are having trouble with the following build errors:
 "btTypedConstraint::serialize(void*, btSerializer*) const", referenced from:
 "btAlignedFreeInternal(void*)", referenced from:

then you have to include the Bullet frameworks in your Xcode project. Make sure they are built and installed like this (This is without Xcode, maybe there is some way to make them in Xcode too, I don't know):

   cmake . -G "Unix Makefiles" -DINSTALL_LIBS=ON -DBUILD_SHARED_LIBS=ON \
    -DFRAMEWORK=ON  -DCMAKE_OSX_ARCHITECTURES='i386;x86_64' \
    -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/Library/Frameworks \
    -DCMAKE_INSTALL_NAME_DIR=/Library/Frameworks -DBUILD_DEMOS:BOOL=OFF
   make -j4
   sudo make install

This will put the Bullet frameworks in /Library/Frameworks. Navigate there in the finder and then drag the frameworks into your Xcode project. You need at least LinearMath.framework and BulletDynamics.framework. (Those two will fix the above linking errors.) But you probably also want BulletCollision.framework and maybe others.

If you have set up the frameworks like this, you don't have to change the header search path as above. Instead you can put this include line and Xcode will find the headers inside the framework:

  #include <BulletDynamics/btBulletDynamicsCommon.h>

Unix, Linux, MinGW etc

Follow the generic make recipe from the installation guide making sure the .a files are built. From there, when creating a Makefile, in the gcc arguments, make sure you add in a -I bullet_dir for the headers and also add in libBulletDynamics.a, libBulletCollision.a and libLinearMath.a or whatever you're using.

For example (assuming the src dir is in the folder bullet):

gcc myprogram.cpp -lGL -lGLU -I ./bullet/ ./bullet/BulletDynamics/libBulletDynamics.a ./bullet/BulletCollision/libBulletCollision.a ./bullet/LinearMath/libLinearMath.a

Link order for libraries

Note that many compilers the link order matters, so make sure to use the following order of libraries:

  • BulletMultiThreaded (optional)
  • MiniCL (optional)
  • BulletWorldImporter (optional)
  • BulletSoftBody (optional)
  • BulletDynamics
  • BulletCollision
  • LinearMath
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值