mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-26 04:11:18 +00:00
Merge branch 'mobjscale-itemthrow' into 'next'
Small mapobjectscale fixes See merge request KartKrew/Kart-Public!259
This commit is contained in:
commit
17d45fc790
1 changed files with 5 additions and 6 deletions
11
src/k_kart.c
11
src/k_kart.c
|
@ -3259,7 +3259,7 @@ static mobj_t *K_ThrowKartItem(player_t *player, boolean missile, mobjtype_t map
|
||||||
angle_t fa = player->mo->angle>>ANGLETOFINESHIFT;
|
angle_t fa = player->mo->angle>>ANGLETOFINESHIFT;
|
||||||
fixed_t HEIGHT = (20 + (dir*10))*mapobjectscale + (player->mo->momz*P_MobjFlip(player->mo));
|
fixed_t HEIGHT = (20 + (dir*10))*mapobjectscale + (player->mo->momz*P_MobjFlip(player->mo));
|
||||||
|
|
||||||
P_SetObjectMomZ(mo, HEIGHT, false);
|
mo->momz = HEIGHT*P_MobjFlip(mo);
|
||||||
mo->momx = player->mo->momx + FixedMul(FINECOSINE(fa), PROJSPEED*dir);
|
mo->momx = player->mo->momx + FixedMul(FINECOSINE(fa), PROJSPEED*dir);
|
||||||
mo->momy = player->mo->momy + FixedMul(FINESINE(fa), PROJSPEED*dir);
|
mo->momy = player->mo->momy + FixedMul(FINESINE(fa), PROJSPEED*dir);
|
||||||
|
|
||||||
|
@ -5062,6 +5062,9 @@ INT32 K_GetKartDriftSparkValue(player_t *player)
|
||||||
static void K_KartDrift(player_t *player, boolean onground)
|
static void K_KartDrift(player_t *player, boolean onground)
|
||||||
{
|
{
|
||||||
fixed_t minspeed = (10 * player->mo->scale);
|
fixed_t minspeed = (10 * player->mo->scale);
|
||||||
|
INT32 dsone = K_GetKartDriftSparkValue(player);
|
||||||
|
INT32 dstwo = dsone*2;
|
||||||
|
INT32 dsthree = dstwo*2;
|
||||||
|
|
||||||
// Grown players taking yellow spring panels will go below minspeed for one tic,
|
// Grown players taking yellow spring panels will go below minspeed for one tic,
|
||||||
// and will then wrongdrift or have their sparks removed because of this.
|
// and will then wrongdrift or have their sparks removed because of this.
|
||||||
|
@ -5069,10 +5072,6 @@ static void K_KartDrift(player_t *player, boolean onground)
|
||||||
if (player->kartstuff[k_pogospring] == 2 && player->mo->scale > mapobjectscale)
|
if (player->kartstuff[k_pogospring] == 2 && player->mo->scale > mapobjectscale)
|
||||||
minspeed = FixedMul(10<<FRACBITS, mapobjectscale);
|
minspeed = FixedMul(10<<FRACBITS, mapobjectscale);
|
||||||
|
|
||||||
INT32 dsone = K_GetKartDriftSparkValue(player);
|
|
||||||
INT32 dstwo = dsone*2;
|
|
||||||
INT32 dsthree = dstwo*2;
|
|
||||||
|
|
||||||
// Drifting is actually straffing + automatic turning.
|
// Drifting is actually straffing + automatic turning.
|
||||||
// Holding the Jump button will enable drifting.
|
// Holding the Jump button will enable drifting.
|
||||||
|
|
||||||
|
@ -6036,7 +6035,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
||||||
if (leveltime < starttime+10)
|
if (leveltime < starttime+10)
|
||||||
{
|
{
|
||||||
player->mo->scalespeed = mapobjectscale/12;
|
player->mo->scalespeed = mapobjectscale/12;
|
||||||
player->mo->destscale = mapobjectscale + (player->kartstuff[k_boostcharge]*131);
|
player->mo->destscale = mapobjectscale + (FixedMul(mapobjectscale, player->kartstuff[k_boostcharge]*131));
|
||||||
if (cv_kartdebugshrink.value && !modeattacking && !player->bot)
|
if (cv_kartdebugshrink.value && !modeattacking && !player->bot)
|
||||||
player->mo->destscale = (6*player->mo->destscale)/8;
|
player->mo->destscale = (6*player->mo->destscale)/8;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue