mirror of https://github.com/axmolengine/axmol.git
228 lines
6.3 KiB
C++
228 lines
6.3 KiB
C++
|
/* Copyright (c) 2007 Scott Lembcke
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
* of this software and associated documentation files (the "Software"), to deal
|
||
|
* in the Software without restriction, including without limitation the rights
|
||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
* copies of the Software, and to permit persons to whom the Software is
|
||
|
* furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included in
|
||
|
* all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||
|
* SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
#include "chipmunk.h"
|
||
|
#include "drawSpace.h"
|
||
|
#include "ChipmunkDemo.h"
|
||
|
|
||
|
static cpSpace *space;
|
||
|
static cpBody *staticBody;
|
||
|
|
||
|
typedef struct PlayerStruct {
|
||
|
cpFloat u;
|
||
|
cpShape *shape;
|
||
|
cpVect groundNormal;
|
||
|
cpArray *groundShapes;
|
||
|
} PlayerStruct;
|
||
|
|
||
|
PlayerStruct playerInstance;
|
||
|
|
||
|
static int
|
||
|
begin(cpArbiter *arb, cpSpace *space, void *ignore)
|
||
|
{
|
||
|
CP_ARBITER_GET_SHAPES(arb, a, b);
|
||
|
PlayerStruct *player = (PlayerStruct*)(a->data);
|
||
|
|
||
|
cpVect n = cpvneg(cpArbiterGetNormal(arb, 0));
|
||
|
if(n.y > 0.0f){
|
||
|
cpArrayPush(player->groundShapes, b);
|
||
|
}
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static int
|
||
|
preSolve(cpArbiter *arb, cpSpace *space, void *ignore)
|
||
|
{
|
||
|
CP_ARBITER_GET_SHAPES(arb, a, b);
|
||
|
PlayerStruct *player = (PlayerStruct*)(a->data);
|
||
|
|
||
|
if(arb->stamp > 0){
|
||
|
a->u = player->u;
|
||
|
|
||
|
// pick the most upright jump normal each frame
|
||
|
cpVect n = cpvneg(cpArbiterGetNormal(arb, 0));
|
||
|
if(n.y >= player->groundNormal.y){
|
||
|
player->groundNormal = n;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
separate(cpArbiter *arb, cpSpace *space, void *ignore)
|
||
|
{
|
||
|
CP_ARBITER_GET_SHAPES(arb, a, b);
|
||
|
PlayerStruct *player = (PlayerStruct*)(a->data);
|
||
|
|
||
|
cpArrayDeleteObj(player->groundShapes, b);
|
||
|
|
||
|
if(player->groundShapes->num == 0){
|
||
|
a->u = 0.0f;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
playerUpdateVelocity(cpBody *body, cpVect gravity, cpFloat damping, cpFloat dt)
|
||
|
{
|
||
|
cpBodyUpdateVelocity(body, gravity, damping, dt);
|
||
|
body->v.y = cpfmax(body->v.y, -700);
|
||
|
body->v.x = cpfclamp(body->v.x, -400, 400);
|
||
|
}
|
||
|
|
||
|
|
||
|
static void
|
||
|
update(int ticks)
|
||
|
{
|
||
|
static int lastJumpState = 0;
|
||
|
int jumpState = (arrowDirection.y > 0.0f);
|
||
|
|
||
|
cpVect groundNormal = playerInstance.groundNormal;
|
||
|
if(groundNormal.y > 0.0f){
|
||
|
playerInstance.shape->surface_v = cpvmult(cpvperp(groundNormal), 400.0f*arrowDirection.x);
|
||
|
} else {
|
||
|
playerInstance.shape->surface_v = cpvzero;
|
||
|
}
|
||
|
|
||
|
cpBody *body = playerInstance.shape->body;
|
||
|
|
||
|
// apply jump
|
||
|
if(jumpState && !lastJumpState && cpvlengthsq(groundNormal)){
|
||
|
// body->v = cpvmult(cpvslerp(groundNormal, cpv(0.0f, 1.0f), 0.5f), 500.0f);
|
||
|
body->v = cpvadd(body->v, cpvmult(cpvslerp(groundNormal, cpv(0.0f, 1.0f), 0.75f), 500.0f));
|
||
|
}
|
||
|
|
||
|
if(playerInstance.groundShapes->num == 0){
|
||
|
cpFloat air_accel = body->v.x + arrowDirection.x*(2000.0f);
|
||
|
body->f.x = body->m*air_accel;
|
||
|
// body->v.x = cpflerpconst(body->v.x, 400.0f*arrowDirection.x, 2000.0f/60.0f);
|
||
|
}
|
||
|
|
||
|
int steps = 3;
|
||
|
cpFloat dt = 1.0f/60.0f/(cpFloat)steps;
|
||
|
|
||
|
playerInstance.groundNormal = cpvzero;
|
||
|
for(int i=0; i<steps; i++){
|
||
|
cpSpaceStep(space, dt);
|
||
|
}
|
||
|
|
||
|
lastJumpState = jumpState;
|
||
|
}
|
||
|
|
||
|
static cpSpace *
|
||
|
init(void)
|
||
|
{
|
||
|
staticBody = cpBodyNew(INFINITY, INFINITY);
|
||
|
|
||
|
cpResetShapeIdCounter();
|
||
|
|
||
|
space = cpSpaceNew();
|
||
|
space->iterations = 10;
|
||
|
space->gravity = cpv(0, -1500);
|
||
|
|
||
|
cpBody *body;
|
||
|
cpShape *shape;
|
||
|
|
||
|
// Create segments around the edge of the screen.
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(-320,-240), cpv(-320,240), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(320,-240), cpv(320,240), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(-320,-240), cpv(320,-240), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(-320,240), cpv(320,240), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
// add some other segments to play with
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(-220,-200), cpv(-220,240), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(0,-240), cpv(320,-200), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(200,-240), cpv(320,-100), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
shape = cpSpaceAddStaticShape(space, cpSegmentShapeNew(staticBody, cpv(-220,-80), cpv(200,-80), 0.0f));
|
||
|
shape->e = 1.0f; shape->u = 1.0f;
|
||
|
shape->layers = NOT_GRABABLE_MASK;
|
||
|
shape->collision_type = 2;
|
||
|
|
||
|
// Set up the player
|
||
|
cpFloat radius = 15.0f;
|
||
|
body = cpSpaceAddBody(space, cpBodyNew(10.0f, INFINITY));
|
||
|
body->p = cpv(0, -220);
|
||
|
body->velocity_func = playerUpdateVelocity;
|
||
|
|
||
|
shape = cpSpaceAddShape(space, cpCircleShapeNew(body, radius, cpvzero));
|
||
|
shape->e = 0.0f; shape->u = 2.0f;
|
||
|
shape->collision_type = 1;
|
||
|
|
||
|
playerInstance.u = shape->u;
|
||
|
playerInstance.shape = shape;
|
||
|
playerInstance.groundShapes = cpArrayNew(0);
|
||
|
shape->data = &playerInstance;
|
||
|
|
||
|
cpSpaceAddCollisionHandler(space, 1, 2, begin, preSolve, NULL, separate, NULL);
|
||
|
|
||
|
return space;
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
destroy(void)
|
||
|
{
|
||
|
cpBodyFree(staticBody);
|
||
|
cpSpaceFreeChildren(space);
|
||
|
cpSpaceFree(space);
|
||
|
|
||
|
cpArrayFree(playerInstance.groundShapes);
|
||
|
}
|
||
|
|
||
|
chipmunkDemo Player = {
|
||
|
"Player",
|
||
|
NULL,
|
||
|
init,
|
||
|
update,
|
||
|
destroy,
|
||
|
};
|