2019-11-20 16:21:32 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 2010-2019 EDuke32 developers and contributors
|
|
|
|
Copyright (C) 2019 sirlemonhead, Nuke.YKT
|
|
|
|
This file is part of PCExhumed.
|
|
|
|
PCExhumed is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2020-10-11 10:41:38 +00:00
|
|
|
#pragma once
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2020-08-26 15:12:48 +00:00
|
|
|
#include "packet.h"
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
BEGIN_PS_NS
|
|
|
|
|
2020-08-29 00:17:28 +00:00
|
|
|
enum {
|
|
|
|
kButtonCheatGuns = 0x20,
|
|
|
|
kButtonCheatGodMode = 0x40,
|
|
|
|
kButtonCheatKeys = 0x80,
|
|
|
|
kButtonCheatItems = 0x100,
|
|
|
|
};
|
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
// 32 bytes
|
2020-08-26 14:55:32 +00:00
|
|
|
struct PlayerInput
|
2019-08-26 03:59:14 +00:00
|
|
|
{
|
2021-10-21 20:18:29 +00:00
|
|
|
DExhumedActor* pTarget;
|
2019-08-31 07:47:15 +00:00
|
|
|
int xVel;
|
|
|
|
int yVel;
|
2019-08-31 09:08:38 +00:00
|
|
|
uint16_t buttons;
|
2020-10-08 03:47:30 +00:00
|
|
|
float nAngle;
|
|
|
|
float pan;
|
2019-08-31 07:47:15 +00:00
|
|
|
int8_t nItem;
|
2020-08-26 22:58:21 +00:00
|
|
|
ESyncBits actions;
|
|
|
|
|
|
|
|
int getNewWeapon() const
|
|
|
|
{
|
|
|
|
return (actions & SB_WEAPONMASK_BITS).GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetNewWeapon(int weap)
|
|
|
|
{
|
|
|
|
actions = (actions & ~SB_WEAPONMASK_BITS) | (ESyncBits::FromInt(weap) & SB_WEAPONMASK_BITS);
|
|
|
|
}
|
|
|
|
|
2019-08-26 03:59:14 +00:00
|
|
|
};
|
|
|
|
|
2021-11-16 17:50:02 +00:00
|
|
|
void ClearSpaceBar(int nPlayer);
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2020-08-26 14:54:54 +00:00
|
|
|
int GetLocalInput();
|
2019-08-26 03:59:14 +00:00
|
|
|
|
|
|
|
extern PlayerInput sPlayerInput[];
|
2020-08-26 15:12:48 +00:00
|
|
|
extern InputPacket localInput;
|
2020-08-22 19:13:11 +00:00
|
|
|
extern int lLocalCodes;
|
2019-08-26 03:59:14 +00:00
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
END_PS_NS
|
|
|
|
|