Talking about Actionscript 3, Box2D and Flash.
I would like to start talking about a Shrink it prototype but I noticed it’s most based upon objects resizing.
So before trying to replicate the game, let’s start with some info about object scaling in Box2D
The first interesting thing about Box2D scaling is you can’t scale a Box2D body.
And the tutorial is over :)
Now, what about deleting an existing object and replacing it with a smaller/bigger one?
That’s the right way you can do it.
In this example, I am going to resize the simplest object ever… a circle. You know to scale a circle you simply have to change its radius.
So the trick is delete the previous circle, and create a new one.
But it’s not that easy.
In Box2D, there are bodies and shapes. A body is a collection of shapes. A circle, in this specific case, is a body with one circle shape. So to scale the circle, we must remove the initial circle shape from the body, and add a new one. We don’t have to touch the body, only the shape.
Then, since different circles have different masses, we must assign a new mass to the body.
In this script I assume you know how to select a Box2D object with the mouse. If you aren’t familiar with it, read Understanding pixels and meters with Box2D and how to select an object with mouse – part 1 and part 2.
Once you know how to select an object, it’s all a matter of geometry: to scale a circle you just have to change its radius, and every regular polygon has its formula. To tell the truth, I should improve my geometry skills so if you have the formula to resize hexagons or similar shapes, you’re welcome!
So this code has nothing new except lines 87-106 that are fully commented:
package {
import flash.display.Sprite;
import flash.events.Event;
import flash.events.MouseEvent;
import Box2D.Dynamics.*;
import Box2D.Collision.*;
import Box2D.Collision.Shapes.*;
import Box2D.Common.Math.*;
public class shrink extends Sprite {
var body:b2Body;
public var m_world:b2World;
public var m_iterations:int=10;
public var m_timeStep:Number=1.0/30.0;
private var mousePVec:b2Vec2 = new b2Vec2();
public function shrink() {
var worldAABB:b2AABB = new b2AABB();
var bodyDef:b2BodyDef;
var boxDef:b2PolygonDef;
var circleDef:b2CircleDef;
worldAABB.lowerBound.Set(-100.0, -100.0);
worldAABB.upperBound.Set(100.0, 100.0);
m_world=new b2World(worldAABB,new b2Vec2(0,10),true);
// debug draw start
var m_sprite:Sprite;
m_sprite = new Sprite();
addChild(m_sprite);
var dbgDraw:b2DebugDraw = new b2DebugDraw();
var dbgSprite:Sprite = new Sprite();
m_sprite.addChild(dbgSprite);
dbgDraw.m_sprite=m_sprite;
dbgDraw.m_drawScale=30;
dbgDraw.m_alpha=1;
dbgDraw.m_fillAlpha=0.5;
dbgDraw.m_lineThickness=1;
dbgDraw.m_drawFlags=b2DebugDraw.e_shapeBit;
m_world.SetDebugDraw(dbgDraw);
// debug draw end
bodyDef = new b2BodyDef();
bodyDef.position.Set(10, 12);
boxDef = new b2PolygonDef();
boxDef.SetAsBox(30, 3);
boxDef.friction=0.3;
boxDef.density=0;
body=m_world.CreateBody(bodyDef);
body.CreateShape(boxDef);
body.SetMassFromShapes();
//
bodyDef = new b2BodyDef();
bodyDef.position.x=5;
bodyDef.position.y=5;
circleDef = new b2CircleDef();
circleDef.radius=3;
circleDef.density=1.0;
circleDef.friction=0.5;
circleDef.restitution=0.2;
body=m_world.CreateBody(bodyDef);
body.CreateShape(circleDef);
body.SetMassFromShapes();
//
addEventListener(Event.ENTER_FRAME, Update, false, 0, true);
stage.addEventListener(MouseEvent.MOUSE_DOWN, GetBodyAtMouse);
}
public function GetBodyAtMouse(includeStatic:Boolean=false):b2Body {
var mouseXWorldPhys = (mouseX)/30;
var mouseYWorldPhys = (mouseY)/30;
mousePVec.Set(mouseXWorldPhys, mouseYWorldPhys);
var aabb:b2AABB = new b2AABB();
aabb.lowerBound.Set(mouseXWorldPhys - 0.001, mouseYWorldPhys
- 0.001);
aabb.upperBound.Set(mouseXWorldPhys + 0.001, mouseYWorldPhys
+ 0.001);
var k_maxCount:int=10;
var shapes:Array = new Array();
var count:int=m_world.Query(aabb,shapes,k_maxCount);
var body:b2Body=null;
for (var i:int = 0; i < count; ++i) {
if (shapes[i].GetBody().IsStatic()==false||includeStatic) {
var tShape:b2Shape=shapes[i] as b2Shape;
var inside:Boolean=tShape.TestPoint(tShape.GetBody().GetXForm(),mousePVec);
if (inside) {
body=tShape.GetBody();
break;
}
}
}
// if I selected a body...
if (body) {
// I know it's a circle, so I am creating a b2CircleShape variable
var circle:b2CircleShape=body.GetShapeList() as b2CircleShape;
// getting the radius..
var r=circle.GetRadius();
// removing the circle shape from the body
body.DestroyShape(circle);
// creating a new circle shape
var circleDef:b2CircleDef;
circleDef = new b2CircleDef();
// calculating new radius
circleDef.radius=r*0.9;
circleDef.density=1.0;
circleDef.friction=0.5;
circleDef.restitution=0.2;
// attach the shape to the body
body.CreateShape(circleDef);
// determine new body mass
body.SetMassFromShapes();
}
return body;
}
public function Update(e:Event):void {
m_world.Step(m_timeStep, m_iterations);
}
}
}
And this is the result:
Click on the circle to scale it down by 10%
Next time, I'll show you how to scale squares and triangles.
Never miss an update! Subscribe, and I will bother you by email only when a new game or full source code comes out.