Software:Box2D

From HandWiki
Box2D
Current Box2D logo
Current Box2D logo
Screenshot
Box2D screenshot
Developer(s)Erin Catto
Initial releaseSeptember 11, 2007 (2007-09-11)
Written inC++
Operating systemOS independent
TypeMiddleware
LicenseMIT (since version 2.4.0)[1]
zlib License
Websitewww.box2d.org

Box2D is a free open source 2-dimensional physics simulator engine written in C++ by Erin Catto and published under the MIT license. It has been used in Crayon Physics Deluxe, Limbo, Rolando, Incredibots, Angry Birds, Tiny Wings, Shovel Knight, Transformice, Happy Wheels,[3] and many online Flash games,[4] as well as iPhone, iPad and Android games using the Cocos2d or Moscrif game engine and Corona framework.

History

Box2D was first released as "Box2D Lite", a demonstration engine to accompany a physics presentation given by Erin Catto at GDC 2006. On September 11, 2007, it was released as open source on SourceForge. On January 17, 2010, Box 2D moved the project to Google Code for hosting.[5] On July 12, 2015, hosting was moved again, this time to GitHub.[6]

On March 6, 2008, version 2.0 was launched, introducing continuous collision detection and revamping the API.

On July 27, 2020, version 2.4 was launched, with a variety of changes, most notably the license was changed to the MIT License.[7]

Cross-platform availability

Box2D is itself written in platform-independent C++ (usable on any system with a C++ compiler available). The engine may be compiled in fixed point and floating point modes, and has been used on the Nintendo DS, Wii, and several mobile phones (including Android, BlackBerry 10 and iOS) as well as most major operating systems.

The engine has been ported to many other programming languages and environments, including Java,[8] Adobe Flash (in ActionScript[9] and Haxe[10] languages), C#,[11] Lua, JavaScript,[12][13] and D.[14] Bindings exist to use the compiled library from Python,[15] DarkBASIC and BBC BASIC.

On October 30, 2009, it was announced that Box2D was being integrated into the (now older) Torque 2D game engine.[16]

Programs that use the engine

  • BBC Basic for SDL, cross-platform version of BBC Basic
  • BlitzBasic
  • GameMaker: Studio, uses the engine for physics simulation.
  • LibGDX, uses the physics engine for games and lighting.
  • Stencyl, uses the physics engine for games, and allows export to Flash and iOS.
  • Unity
  • Construct2
  • LÖVE, uses the physics engine for games[17]
  • Solar2D
  • Clickteam Fusion 2.5
  • Flame, Flutter game engine

Features

Box2D performs constrained rigid body simulation. It can simulate bodies composed of convex polygons, circles, and edge shapes. Bodies are joined with joints and acted upon by forces. The engine also applies gravity, friction, and restitution.

Box2D's collision detection and resolution system consists of three pieces: an incremental sweep and prune broad phase, a continuous collision detection unit, and a stable linear-time contact solver. These algorithms allow efficient simulations of fast bodies and large stacks without missing collisions or causing instabilities.[18]

Related engines

An earlier version of the Box2D engine, now known as Box2D Lite, was released primarily for educational purposes, based on a series of yearly Game Developers Conference presentations that Erin Catto has given. Box2D Lite uses many of the same algorithms as Box2D, but has a smaller feature set.

The Chipmunk physics engine (written in C)[19] and Phys2D (written in Java)[20] are both partially based on Box2D Lite. The physics engine used in SpriteKit for iOS and OS X uses Box2D internally.[21]

The LiquidFun physics engine is a fork of Box2D by Google,[22] which adds fluid simulation to the engine.

LibGDX uses a Java wrapper around native Box2D code written in C++ as its physics engine.[23]

Articles

Itterheim and Wenderlich describe the usage of Box2D in the Cocos2d iPhone engine.[24][25] An article in the Adobe Edge newsletter discusses the use of Box2D in Flash games.[26]

See also

References

  1. "Box2D on GitHub". October 15, 2021. https://github.com/erincatto/Box2D. 
  2. Erin Catto. "Latest Release". GitHub. https://github.com/erincatto/box2d/releases/latest. 
  3. "Play Happy Wheels Online – AndroidFantasy". https://www.androidfantasy.com/play-happy-wheels-online/. 
  4. "Box2d Games at Jayisgames". Jayisgames. http://jayisgames.com/tag/box2d. 
  5. "Box2D – Home". Box2D. http://www.box2d.org/. 
  6. "GitHub Hosting | Box2D" (in en-US). http://box2d.org/2015/07/github-hosting/. 
  7. "Release v2.4.0" (in en-US). https://github.com/erincatto/box2d/releases/tag/v2.4.0. 
  8. "JBox2D: A Java Physics Engine". JBox2D. http://www.jbox2d.org/. 
  9. "AS3 Flash Physics Engine Box2DFlashAS3 2.0.1". Box2D. http://box2dflash.sourceforge.net/. 
  10. "Google Code Archive – Long-term storage for Google Code Project Hosting.". https://code.google.com/p/physaxe/. 
  11. "Google Code Archive – Long-term storage for Google Code Project Hosting.". https://code.google.com/p/box2dx/. 
  12. "Box2DJS". Box2D. http://box2d-js.sourceforge.net/. 
  13. "GitHub – hecht-software/box2dweb: Automatically exported from code.google.com/p/box2dweb". GitHub. September 16, 2021. https://code.google.com/p/box2dweb/. 
  14. "blaze". Dsource. http://www.dsource.org/projects/blaze. 
  15. "Pybox2d/pybox2d: 2D Game Physics for Python". GitHub. https://github.com/pybox2d/pybox2d. 
  16. Perry, Michael (October 30, 2009). "Torque 2D Development Blog – Box2D Overview". garagegames.com. http://www.garagegames.com/community/blogs/view/18641. 
  17. "Love.physics - LOVE". https://love2d.org/wiki/love.physics. 
  18. "Chapter 1 Introduction". Box2D. http://www.box2d.org/manual.html. 
  19. "Google Code Archive – Long-term storage for Google Code Project Hosting.". https://code.google.com/p/chipmunk-physics/. 
  20. "Index of /phys2d". Coke and Code. http://www.cokeandcode.com/phys2d/. 
  21. "tm4ko – Ghostbin". Ghostbin. https://ghostbin.com/paste/tm4ko. 
  22. "LiquidFun". https://google.github.io/liquidfun/. 
  23. "Physics · libgdx/Libgdx Wiki". https://github.com/libgdx/libgdx/wiki/Physics. 
  24. Steffen Itterheim. (2010). "Learn iPhone and iPad cocos2d Game Development." Apress.
  25. Rod Strougo and Ray Wenderlich. (2011). "Learning Cocos2d: A Hands-On Guide to Building IOS Games with Cocos2d, Box2d, and Chipmunk." Addison-Wesley Professional.
  26. "Adobe Edge: April 2010 – Developing physics-based games with Adobe Flash Professional". Adobe. https://www.adobe.com/newsletters/edge/april2010/articles/article7/. 

External links