Cocos2d-x   发布时间:2022-05-02  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了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
  • Choose the LOCATIOn where you unzipped the Bullet source code,and where you build the binaries for your own project and press Configure
  • Choose the compiler,such as Microsoft Visual studio 2008
  • Review the setTings and press Configure again
    @H_342_50@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
  • 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:
  • Hit Finish
  • Just try to build it without any change
  • Now add the generated projectfiles for the Bullet libraries,BulletCollision,BulletDynamics and LinearMath:
  • 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:
    @H_342_50@make sure to make your program dependent on the Bullet libraries,right click on your project,SELEct 'Dependencies'
  • and SELEct the Bullet libraries:
  • 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'
  • Goto C/C++,Additional Include Directories,and type/browse to the Bullet/src folder,in our case c:\develop\bullet-2.76\src
  • Repeat those steps for all configurations (Debug,Release etC),and start progrAMMing
  • 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):
  • 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,@H_716_211@m,@H_716_211@make,@H_716_211@mel,@H_716_211@mib,@H_716_211@miranda,@H_716_211@ml,@H_716_211@mo,@H_716_211@mod3,@H_716_211@mpl,@H_716_211@ms,@H_716_211@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:
  • put it in next to bullet-2.x,in the develop folder:

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

  • Edit the project setTings for All Configurations

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

  • Now build the project:

  • 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,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)
  • @H_342_50@miniCL (optional)
  • BulletWorldImporter (optional)
  • BulletSoftBody (optional)
  • BulletDynamics
  • BulletCollision
  • LinearMath

大佬总结

以上是大佬教程为你收集整理的Bullet cocos2d-x Creating a project from scratch全部内容,希望文章能够帮你解决Bullet cocos2d-x Creating a project from scratch所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。