2007-11-25 19:42:40 +00:00
|
|
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
|
2008-02-02 12:38:36 +00:00
|
|
|
#include <string.h>
|
2007-12-15 10:24:49 +00:00
|
|
|
#include "g_game.h"
|
2007-09-22 18:55:00 +00:00
|
|
|
|
2008-02-02 12:38:36 +00:00
|
|
|
const char *tuning_params::names[] =
|
|
|
|
{
|
|
|
|
#define MACRO_TUNING_PARAM(name,value) #name,
|
|
|
|
#include "g_tuning.h"
|
|
|
|
#undef MACRO_TUNING_PARAM
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
bool tuning_params::set(int index, float value)
|
|
|
|
{
|
|
|
|
if(index < 0 || index >= num())
|
|
|
|
return false;
|
|
|
|
((tune_param *)this)[index] = value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tuning_params::get(int index, float *value)
|
|
|
|
{
|
|
|
|
if(index < 0 || index >= num())
|
|
|
|
return false;
|
|
|
|
*value = (float)((tune_param *)this)[index];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tuning_params::set(const char *name, float value)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < num(); i++)
|
|
|
|
if(strcmp(name, names[i]) == 0)
|
|
|
|
return set(i, value);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool tuning_params::get(const char *name, float *value)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < num(); i++)
|
|
|
|
if(strcmp(name, names[i]) == 0)
|
|
|
|
return get(i, value);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
// TODO: OPT: rewrite this smarter!
|
|
|
|
void move_point(vec2 *inout_pos, vec2 *inout_vel, float elasticity, int *bounces)
|
|
|
|
{
|
|
|
|
if(bounces)
|
|
|
|
*bounces = 0;
|
|
|
|
|
|
|
|
vec2 pos = *inout_pos;
|
|
|
|
vec2 vel = *inout_vel;
|
|
|
|
if(col_check_point(pos + vel))
|
|
|
|
{
|
|
|
|
int affected = 0;
|
|
|
|
if(col_check_point(pos.x + vel.x, pos.y))
|
|
|
|
{
|
|
|
|
inout_vel->x *= -elasticity;
|
|
|
|
if(bounces)
|
|
|
|
(*bounces)++;
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(col_check_point(pos.x, pos.y + vel.y))
|
|
|
|
{
|
|
|
|
inout_vel->y *= -elasticity;
|
|
|
|
if(bounces)
|
|
|
|
(*bounces)++;
|
|
|
|
affected++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(affected == 0)
|
|
|
|
{
|
|
|
|
inout_vel->x *= -elasticity;
|
|
|
|
inout_vel->y *= -elasticity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*inout_pos = pos + vel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-12 19:52:57 +00:00
|
|
|
bool test_box(vec2 pos, vec2 size)
|
2007-09-25 20:04:54 +00:00
|
|
|
{
|
|
|
|
size *= 0.5f;
|
|
|
|
if(col_check_point(pos.x-size.x, pos.y-size.y))
|
|
|
|
return true;
|
|
|
|
if(col_check_point(pos.x+size.x, pos.y-size.y))
|
|
|
|
return true;
|
|
|
|
if(col_check_point(pos.x-size.x, pos.y+size.y))
|
|
|
|
return true;
|
|
|
|
if(col_check_point(pos.x+size.x, pos.y+size.y))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
void move_box(vec2 *inout_pos, vec2 *inout_vel, vec2 size, float elasticity)
|
|
|
|
{
|
|
|
|
// do the move
|
|
|
|
vec2 pos = *inout_pos;
|
|
|
|
vec2 vel = *inout_vel;
|
|
|
|
|
|
|
|
float distance = length(vel);
|
|
|
|
int max = (int)distance;
|
|
|
|
|
|
|
|
if(distance > 0.00001f)
|
|
|
|
{
|
2007-09-25 20:04:54 +00:00
|
|
|
//vec2 old_pos = pos;
|
|
|
|
float fraction = 1.0f/(float)(max+1);
|
2007-09-22 18:55:00 +00:00
|
|
|
for(int i = 0; i <= max; i++)
|
|
|
|
{
|
2007-09-25 20:04:54 +00:00
|
|
|
//float amount = i/(float)max;
|
|
|
|
//if(max == 0)
|
|
|
|
//amount = 0;
|
2007-09-22 18:55:00 +00:00
|
|
|
|
2007-09-25 20:04:54 +00:00
|
|
|
vec2 new_pos = pos + vel*fraction; // TODO: this row is not nice
|
|
|
|
|
2007-12-12 20:05:18 +00:00
|
|
|
if(test_box(vec2(new_pos.x, new_pos.y), size))
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
2007-12-12 20:05:18 +00:00
|
|
|
int hits = 0;
|
|
|
|
|
|
|
|
if(test_box(vec2(pos.x, new_pos.y), size))
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
2007-09-25 20:04:54 +00:00
|
|
|
new_pos.y = pos.y;
|
2007-09-25 21:53:14 +00:00
|
|
|
vel.y *= -elasticity;
|
2007-12-12 20:05:18 +00:00
|
|
|
hits++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(test_box(vec2(new_pos.x, pos.y), size))
|
|
|
|
{
|
|
|
|
new_pos.x = pos.x;
|
|
|
|
vel.x *= -elasticity;
|
|
|
|
hits++;
|
2007-09-25 20:04:54 +00:00
|
|
|
}
|
|
|
|
|
2007-12-12 20:05:18 +00:00
|
|
|
// neither of the tests got a collision.
|
|
|
|
// this is a real _corner case_!
|
|
|
|
if(hits == 0)
|
2007-09-25 20:04:54 +00:00
|
|
|
{
|
2007-12-12 20:05:18 +00:00
|
|
|
new_pos.y = pos.y;
|
|
|
|
vel.y *= -elasticity;
|
2007-09-25 20:04:54 +00:00
|
|
|
new_pos.x = pos.x;
|
2007-09-25 21:53:14 +00:00
|
|
|
vel.x *= -elasticity;
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-25 20:04:54 +00:00
|
|
|
pos = new_pos;
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*inout_pos = pos;
|
|
|
|
*inout_vel = vel;
|
|
|
|
}
|
|
|
|
|
2008-03-16 22:32:17 +00:00
|
|
|
float hermite_basis1(float v)
|
|
|
|
{
|
|
|
|
return 2*v*v*v - 3*v*v+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
float velocity_ramp(float value, float start, float range, float curvature)
|
|
|
|
{
|
|
|
|
if(value < start)
|
|
|
|
return 1.0f;
|
|
|
|
return 1.0f/pow(curvature, (value-start)/range);
|
|
|
|
}
|
2008-02-24 18:41:02 +00:00
|
|
|
|
|
|
|
void player_core::reset()
|
|
|
|
{
|
|
|
|
pos = vec2(0,0);
|
|
|
|
vel = vec2(0,0);
|
|
|
|
hook_pos = vec2(0,0);
|
|
|
|
hook_dir = vec2(0,0);
|
|
|
|
hook_tick = 0;
|
|
|
|
hook_state = HOOK_IDLE;
|
|
|
|
hooked_player = -1;
|
|
|
|
jumped = 0;
|
|
|
|
triggered_events = 0;
|
|
|
|
}
|
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
void player_core::tick()
|
|
|
|
{
|
|
|
|
float phys_size = 28.0f;
|
2007-12-09 12:40:34 +00:00
|
|
|
triggered_events = 0;
|
2007-09-22 18:55:00 +00:00
|
|
|
|
|
|
|
bool grounded = false;
|
2008-01-19 10:57:25 +00:00
|
|
|
if(col_check_point((int)(pos.x+phys_size/2), (int)(pos.y+phys_size/2+5)))
|
2007-09-22 18:55:00 +00:00
|
|
|
grounded = true;
|
2008-01-19 10:57:25 +00:00
|
|
|
if(col_check_point((int)(pos.x-phys_size/2), (int)(pos.y+phys_size/2+5)))
|
2007-09-22 18:55:00 +00:00
|
|
|
grounded = true;
|
|
|
|
|
|
|
|
vec2 direction = normalize(vec2(input.target_x, input.target_y));
|
|
|
|
|
2008-02-02 12:38:36 +00:00
|
|
|
vel.y += world->tuning.gravity;
|
2007-09-22 18:55:00 +00:00
|
|
|
|
2008-02-02 12:38:36 +00:00
|
|
|
float max_speed = grounded ? world->tuning.ground_control_speed : world->tuning.air_control_speed;
|
|
|
|
float accel = grounded ? world->tuning.ground_control_accel : world->tuning.air_control_accel;
|
|
|
|
float friction = grounded ? world->tuning.ground_friction : world->tuning.air_friction;
|
2007-09-22 18:55:00 +00:00
|
|
|
|
|
|
|
// handle movement
|
|
|
|
if(input.left)
|
|
|
|
vel.x = saturated_add(-max_speed, max_speed, vel.x, -accel);
|
|
|
|
if(input.right)
|
|
|
|
vel.x = saturated_add(-max_speed, max_speed, vel.x, accel);
|
|
|
|
|
|
|
|
if(!input.left && !input.right)
|
|
|
|
vel.x *= friction;
|
|
|
|
|
|
|
|
// handle jumping
|
2007-12-09 09:48:53 +00:00
|
|
|
// 1 bit = to keep track if a jump has been made on this input
|
|
|
|
// 2 bit = to keep track if a air-jump has been made
|
|
|
|
if(grounded)
|
|
|
|
jumped &= ~2;
|
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
if(input.jump)
|
|
|
|
{
|
2007-12-09 09:48:53 +00:00
|
|
|
if(!(jumped&1))
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
2007-12-09 09:48:53 +00:00
|
|
|
if(grounded)
|
|
|
|
{
|
2007-12-09 12:40:34 +00:00
|
|
|
triggered_events |= COREEVENT_GROUND_JUMP;
|
2008-02-02 12:38:36 +00:00
|
|
|
vel.y = -world->tuning.ground_jump_impulse;
|
2007-12-09 09:48:53 +00:00
|
|
|
jumped |= 1;
|
|
|
|
}
|
|
|
|
else if(!(jumped&2))
|
|
|
|
{
|
2007-12-09 12:40:34 +00:00
|
|
|
triggered_events |= COREEVENT_AIR_JUMP;
|
2008-02-02 12:38:36 +00:00
|
|
|
vel.y = -world->tuning.air_jump_impulse;
|
2007-12-09 09:48:53 +00:00
|
|
|
jumped |= 3;
|
|
|
|
}
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2007-12-09 09:48:53 +00:00
|
|
|
jumped &= ~1;
|
2007-10-28 11:30:25 +00:00
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
// do hook
|
|
|
|
if(input.hook)
|
|
|
|
{
|
|
|
|
if(hook_state == HOOK_IDLE)
|
|
|
|
{
|
|
|
|
hook_state = HOOK_FLYING;
|
2008-03-20 00:52:23 +00:00
|
|
|
hook_pos = pos+direction*phys_size*1.5f;
|
2007-09-22 18:55:00 +00:00
|
|
|
hook_dir = direction;
|
|
|
|
hooked_player = -1;
|
2007-12-09 15:56:56 +00:00
|
|
|
hook_tick = 0;
|
2007-12-09 12:40:34 +00:00
|
|
|
triggered_events |= COREEVENT_HOOK_LAUNCH;
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
2008-03-19 23:08:26 +00:00
|
|
|
else if(hook_state == HOOK_GOING_TO_RETRACT)
|
|
|
|
{
|
|
|
|
triggered_events |= COREEVENT_HOOK_RETRACT;
|
|
|
|
hook_state = HOOK_RETRACTED;
|
|
|
|
}
|
2007-09-22 18:55:00 +00:00
|
|
|
else if(hook_state == HOOK_FLYING)
|
|
|
|
{
|
2008-02-02 12:38:36 +00:00
|
|
|
vec2 new_pos = hook_pos+hook_dir*world->tuning.hook_fire_speed;
|
2008-03-19 23:08:26 +00:00
|
|
|
if(distance(pos, new_pos) > world->tuning.hook_length)
|
|
|
|
{
|
|
|
|
hook_state = HOOK_GOING_TO_RETRACT;
|
2008-03-20 00:52:23 +00:00
|
|
|
new_pos = pos + normalize(new_pos-pos) * world->tuning.hook_length;
|
2008-03-19 23:08:26 +00:00
|
|
|
}
|
2008-03-20 00:42:36 +00:00
|
|
|
|
|
|
|
// make sure that the hook doesn't go though the ground
|
|
|
|
bool going_to_hit_ground = false;
|
|
|
|
if(col_intersect_line(hook_pos, new_pos, &new_pos))
|
|
|
|
going_to_hit_ground = true;
|
2007-09-22 18:55:00 +00:00
|
|
|
|
|
|
|
// Check against other players first
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
|
|
|
player_core *p = world->players[i];
|
|
|
|
if(!p || p == this)
|
|
|
|
continue;
|
|
|
|
|
2008-03-19 23:08:26 +00:00
|
|
|
vec2 closest_point = closest_point_on_line(hook_pos, new_pos, p->pos);
|
2008-03-20 00:52:23 +00:00
|
|
|
if(distance(p->pos, closest_point) < phys_size+2.0f)
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
2007-12-09 12:40:34 +00:00
|
|
|
triggered_events |= COREEVENT_HOOK_ATTACH_PLAYER;
|
2007-09-22 18:55:00 +00:00
|
|
|
hook_state = HOOK_GRABBED;
|
|
|
|
hooked_player = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(hook_state == HOOK_FLYING)
|
|
|
|
{
|
|
|
|
// check against ground
|
2008-03-20 00:42:36 +00:00
|
|
|
if(going_to_hit_ground)
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
2007-12-09 12:40:34 +00:00
|
|
|
triggered_events |= COREEVENT_HOOK_ATTACH_GROUND;
|
2007-09-22 18:55:00 +00:00
|
|
|
hook_state = HOOK_GRABBED;
|
|
|
|
}
|
2008-03-20 00:42:36 +00:00
|
|
|
|
|
|
|
hook_pos = new_pos;
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//release_hooked();
|
|
|
|
hooked_player = -1;
|
|
|
|
hook_state = HOOK_IDLE;
|
|
|
|
hook_pos = pos;
|
|
|
|
}
|
2007-12-09 15:56:56 +00:00
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
if(hook_state == HOOK_GRABBED)
|
|
|
|
{
|
|
|
|
if(hooked_player != -1)
|
|
|
|
{
|
|
|
|
player_core *p = world->players[hooked_player];
|
|
|
|
if(p)
|
|
|
|
hook_pos = p->pos;
|
2007-12-09 15:58:24 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// release hook
|
|
|
|
hooked_player = -1;
|
|
|
|
hook_state = HOOK_RETRACTED;
|
|
|
|
hook_pos = pos;
|
|
|
|
}
|
2007-09-22 18:55:00 +00:00
|
|
|
|
|
|
|
// keep players hooked for a max of 1.5sec
|
|
|
|
//if(server_tick() > hook_tick+(server_tickspeed()*3)/2)
|
|
|
|
//release_hooked();
|
|
|
|
}
|
|
|
|
|
2007-12-15 10:49:47 +00:00
|
|
|
// don't do this hook rutine when we are hook to a player
|
|
|
|
if(hooked_player == -1 && distance(hook_pos, pos) > 46.0f)
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
2008-02-02 12:38:36 +00:00
|
|
|
vec2 hookvel = normalize(hook_pos-pos)*world->tuning.hook_drag_accel;
|
2007-09-22 18:55:00 +00:00
|
|
|
// the hook as more power to drag you up then down.
|
|
|
|
// this makes it easier to get on top of an platform
|
|
|
|
if(hookvel.y > 0)
|
|
|
|
hookvel.y *= 0.3f;
|
|
|
|
|
|
|
|
// the hook will boost it's power if the player wants to move
|
|
|
|
// in that direction. otherwise it will dampen everything abit
|
|
|
|
if((hookvel.x < 0 && input.left) || (hookvel.x > 0 && input.right))
|
|
|
|
hookvel.x *= 0.95f;
|
|
|
|
else
|
|
|
|
hookvel.x *= 0.75f;
|
|
|
|
|
|
|
|
vec2 new_vel = vel+hookvel;
|
2008-01-29 21:39:41 +00:00
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
// check if we are under the legal limit for the hook
|
2008-02-02 12:38:36 +00:00
|
|
|
if(length(new_vel) < world->tuning.hook_drag_speed || length(new_vel) < length(vel))
|
2007-09-22 18:55:00 +00:00
|
|
|
vel = new_vel; // no problem. apply
|
2007-10-28 11:30:25 +00:00
|
|
|
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
2007-12-09 15:56:56 +00:00
|
|
|
|
|
|
|
// release hook
|
|
|
|
hook_tick++;
|
2007-12-10 19:49:36 +00:00
|
|
|
if(hooked_player != -1 && hook_tick > SERVER_TICK_SPEED*2)
|
2007-12-09 15:56:56 +00:00
|
|
|
{
|
|
|
|
hooked_player = -1;
|
|
|
|
hook_state = HOOK_RETRACTED;
|
|
|
|
hook_pos = pos;
|
|
|
|
}
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(true)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < MAX_CLIENTS; i++)
|
|
|
|
{
|
|
|
|
player_core *p = world->players[i];
|
|
|
|
if(!p)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
//player *p = (player*)ent;
|
|
|
|
if(p == this) // || !(p->flags&FLAG_ALIVE)
|
|
|
|
continue; // make sure that we don't nudge our self
|
|
|
|
|
|
|
|
// handle player <-> player collision
|
|
|
|
float d = distance(pos, p->pos);
|
|
|
|
vec2 dir = normalize(pos - p->pos);
|
2007-10-28 11:30:25 +00:00
|
|
|
if(d < phys_size*1.25f && d > 1.0f)
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
2008-01-20 15:19:30 +00:00
|
|
|
float a = (phys_size*1.45f - d);
|
2007-12-15 10:49:47 +00:00
|
|
|
|
|
|
|
// make sure that we don't add excess force by checking the
|
|
|
|
// direction against the current velocity
|
|
|
|
vec2 veldir = normalize(vel);
|
|
|
|
float v = 1-(dot(veldir, dir)+1)/2;
|
2008-01-20 15:19:30 +00:00
|
|
|
vel = vel + dir*a*(v*0.75f);
|
|
|
|
vel = vel * 0.85f;
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// handle hook influence
|
|
|
|
if(hooked_player == i)
|
|
|
|
{
|
|
|
|
if(d > phys_size*1.50f) // TODO: fix tweakable variable
|
|
|
|
{
|
2008-02-02 12:38:36 +00:00
|
|
|
float accel = world->tuning.hook_drag_accel * (d/world->tuning.hook_length);
|
|
|
|
float drag_speed = world->tuning.hook_drag_speed;
|
2007-12-15 10:49:47 +00:00
|
|
|
|
|
|
|
// add force to the hooked player
|
2008-02-02 12:38:36 +00:00
|
|
|
p->vel.x = saturated_add(-drag_speed, drag_speed, p->vel.x, accel*dir.x*1.5f);
|
|
|
|
p->vel.y = saturated_add(-drag_speed, drag_speed, p->vel.y, accel*dir.y*1.5f);
|
2007-12-15 10:49:47 +00:00
|
|
|
|
|
|
|
// add a little bit force to the guy who has the grip
|
2008-02-02 12:38:36 +00:00
|
|
|
vel.x = saturated_add(-drag_speed, drag_speed, vel.x, -accel*dir.x*0.25f);
|
|
|
|
vel.y = saturated_add(-drag_speed, drag_speed, vel.y, -accel*dir.y*0.25f);
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-20 15:19:30 +00:00
|
|
|
|
|
|
|
// clamp the velocity to something sane
|
2008-03-16 22:32:17 +00:00
|
|
|
if(length(vel) > 6000)
|
|
|
|
vel = normalize(vel) * 6000;
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void player_core::move()
|
|
|
|
{
|
2008-03-16 22:32:17 +00:00
|
|
|
float rampvalue = velocity_ramp(length(vel)*50, world->tuning.velramp_start, world->tuning.velramp_range, world->tuning.velramp_curvature);
|
|
|
|
|
|
|
|
vel.x = vel.x*rampvalue;
|
2007-09-22 18:55:00 +00:00
|
|
|
move_box(&pos, &vel, vec2(28.0f, 28.0f), 0);
|
2008-03-16 22:32:17 +00:00
|
|
|
vel.x = vel.x*(1.0f/rampvalue);
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
|
2008-02-24 16:03:58 +00:00
|
|
|
void player_core::write(NETOBJ_PLAYER_CORE *obj_core)
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
|
|
|
obj_core->x = (int)pos.x;
|
|
|
|
obj_core->y = (int)pos.y;
|
|
|
|
obj_core->vx = (int)(vel.x*256.0f);
|
|
|
|
obj_core->vy = (int)(vel.y*256.0f);
|
|
|
|
obj_core->hook_state = hook_state;
|
2007-12-09 15:56:56 +00:00
|
|
|
obj_core->hook_tick = hook_tick;
|
2007-09-22 18:55:00 +00:00
|
|
|
obj_core->hook_x = (int)hook_pos.x;
|
|
|
|
obj_core->hook_y = (int)hook_pos.y;
|
|
|
|
obj_core->hook_dx = (int)(hook_dir.x*256.0f);
|
|
|
|
obj_core->hook_dy = (int)(hook_dir.y*256.0f);
|
|
|
|
obj_core->hooked_player = hooked_player;
|
2007-12-09 09:48:53 +00:00
|
|
|
obj_core->jumped = jumped;
|
2007-09-22 18:55:00 +00:00
|
|
|
|
|
|
|
float a = 0;
|
|
|
|
if(input.target_x == 0)
|
|
|
|
a = atan((float)input.target_y);
|
|
|
|
else
|
|
|
|
a = atan((float)input.target_y/(float)input.target_x);
|
|
|
|
|
|
|
|
if(input.target_x < 0)
|
|
|
|
a = a+pi;
|
|
|
|
|
|
|
|
obj_core->angle = (int)(a*256.0f);
|
|
|
|
}
|
|
|
|
|
2008-02-24 16:03:58 +00:00
|
|
|
void player_core::read(const NETOBJ_PLAYER_CORE *obj_core)
|
2007-09-22 18:55:00 +00:00
|
|
|
{
|
|
|
|
pos.x = obj_core->x;
|
|
|
|
pos.y = obj_core->y;
|
|
|
|
vel.x = obj_core->vx/256.0f;
|
|
|
|
vel.y = obj_core->vy/256.0f;
|
|
|
|
hook_state = obj_core->hook_state;
|
2007-12-09 15:56:56 +00:00
|
|
|
hook_tick = obj_core->hook_tick;
|
2007-09-22 18:55:00 +00:00
|
|
|
hook_pos.x = obj_core->hook_x;
|
|
|
|
hook_pos.y = obj_core->hook_y;
|
|
|
|
hook_dir.x = obj_core->hook_dx/256.0f;
|
|
|
|
hook_dir.y = obj_core->hook_dy/256.0f;
|
|
|
|
hooked_player = obj_core->hooked_player;
|
2007-12-09 09:48:53 +00:00
|
|
|
jumped = obj_core->jumped;
|
2007-09-22 18:55:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void player_core::quantize()
|
|
|
|
{
|
2008-02-24 16:03:58 +00:00
|
|
|
NETOBJ_PLAYER_CORE c;
|
2007-09-22 18:55:00 +00:00
|
|
|
write(&c);
|
|
|
|
read(&c);
|
|
|
|
}
|
|
|
|
|