dxx-rebirth/common/main/multiinternal.h

203 lines
7.9 KiB
C
Raw Normal View History

2014-06-01 17:55:23 +00:00
/*
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
2014-06-01 17:55:23 +00:00
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
#pragma once
#include <span>
#include <type_traits>
2014-07-20 01:09:55 +00:00
#include "dxxerror.h"
#include "net_udp.h"
#include "object.h"
#include "powerup.h"
2014-05-24 00:20:30 +00:00
#include "serial.h"
#include "fwd-player.h"
2014-05-24 00:20:30 +00:00
#define _UNPACK_MULTIPLAYER_SERIAL_MESSAGE(A,...) A, ## __VA_ARGS__
#define DEFINE_MULTIPLAYER_SERIAL_MESSAGE(C,T,V,A) \
DEFINE_SERIAL_UDT_TO_MESSAGE(T,V, (multiplayer_command<C>(), _UNPACK_MULTIPLAYER_SERIAL_MESSAGE A)); \
ASSERT_SERIAL_UDT_MESSAGE_SIZE(T, command_length<C>::value)
#define define_multiplayer_command(NAME,SIZE) NAME,
#if defined(DXX_BUILD_DESCENT_I) || defined(DXX_BUILD_DESCENT_II)
#define for_each_multiplayer_command(VALUE) \
VALUE(MULTI_POSITION , 1 + quaternionpos::packed_size::value) \
VALUE(MULTI_REAPPEAR , 4) \
VALUE(MULTI_FIRE , 17) \
VALUE(MULTI_FIRE_TRACK , 20) \
VALUE(MULTI_FIRE_BOMB , 19) \
VALUE(MULTI_REMOVE_OBJECT , 4) \
VALUE(MULTI_MESSAGE , 37) /* (MAX_MESSAGE_LENGTH = 40) */ \
VALUE(MULTI_QUIT , 2) \
VALUE(MULTI_PLAY_SOUND , 8) \
VALUE(MULTI_CONTROLCEN , 4) \
VALUE(MULTI_ROBOT_CLAIM , 5) \
VALUE(MULTI_CLOAK , 2) \
VALUE(MULTI_ENDLEVEL_START , DXX_MP_SIZE_ENDLEVEL_START) \
VALUE(MULTI_CREATE_EXPLOSION , 2) \
VALUE(MULTI_CONTROLCEN_FIRE , 16) \
VALUE(MULTI_CREATE_POWERUP , 19) \
VALUE(MULTI_DECLOAK , 2) \
VALUE(MULTI_ROBOT_POSITION , 5 + quaternionpos::packed_size::value) \
VALUE(MULTI_PLAYER_DERES , DXX_MP_SIZE_PLAYER_RELATED) \
VALUE(MULTI_DOOR_OPEN , DXX_MP_SIZE_DOOR_OPEN) \
VALUE(MULTI_ROBOT_EXPLODE , 7) \
VALUE(MULTI_ROBOT_RELEASE , 5) \
VALUE(MULTI_ROBOT_FIRE , 18) \
VALUE(MULTI_SCORE , 6) \
VALUE(MULTI_CREATE_ROBOT , 6) \
VALUE(MULTI_TRIGGER , 3) \
2014-05-24 00:20:30 +00:00
VALUE(MULTI_BOSS_TELEPORT , 5) \
VALUE(MULTI_BOSS_CLOAK , 3) \
VALUE(MULTI_BOSS_START_GATE , 3) \
VALUE(MULTI_BOSS_STOP_GATE , 3) \
VALUE(MULTI_BOSS_CREATE_ROBOT , 8) \
VALUE(MULTI_CREATE_ROBOT_POWERUPS, 27) \
VALUE(MULTI_HOSTAGE_DOOR , 7) \
VALUE(MULTI_SAVE_GAME , 2+24) /* (ubyte slot, uint id, char name[20]) */ \
VALUE(MULTI_RESTORE_GAME , 2+4) /* (ubyte slot, uint id) */ \
VALUE(MULTI_HEARTBEAT , 5) \
VALUE(MULTI_KILLGOALS , 1 + MAX_PLAYERS) \
VALUE(MULTI_DO_BOUNTY , 2) \
VALUE(MULTI_TYPING_STATE , 3) \
VALUE(MULTI_GMODE_UPDATE , 3) \
VALUE(MULTI_KILL_HOST , 7) \
VALUE(MULTI_KILL_CLIENT , 5) \
VALUE(MULTI_RANK , 3) \
2015-07-02 02:37:55 +00:00
VALUE(MULTI_DROP_WEAPON , 10) \
Improve vulcan/gauss pickup rules - Change D1X to use D2X rules regarding Vulcan cannon pickup. The D1X rules were confusing at best, and seem outright wrong in some ways. - When a Vulcan cannon was picked up, it was treated as containing not less than VULCAN_WEAPON_AMMO_AMOUNT rounds, regardless of what it actually contained. D2X respected the actual contained count, even when running in D1X emulation mode. - In D1X single player, if the Vulcan cannon was not picked up, then it could be treated as Vulcan ammo. If at least 1 unit of ammunition was added to the player, the entire powerup would be consumed, regardless of how much ammunition remained. - In D2X single player, if the Vulcan cannon was not picked up, then ammunition would be taken from it, but the powerup would only be consumed if all its ammunition was taken. - In D1X multiplayer, a player who already had a Vulcan cannon could not get anything from touching a new cannon, and the cannon would not be changed. - In D2X multiplayer, a player who already had a Vulcan cannon could take ammunition from the cannon, but the cannon could not be drained below VULCAN_AMMO_AMOUNT. If the cannon had VULCAN_AMMO_AMOUNT or less, then the player could not take ammunition. If the cannon had more, the player could drain it to that level. - Replace all that with a simplified version of the D2X rules: - If the player does not have the cannon, the cannon is picked up and removed from the mine. The player takes as much of its ammunition as possible. If the cannon was well stocked, and the player was nearly full, some ammunition will be lost. This is unfortunate, but the game has always had this rule, and changing it would require dropping one or more Vulcan Ammo packs to represent the untaken ammunition. - If the player already had that cannon, then the player takes as much ammunition as the cannon has, while not exceeding the ammunition cap. Other players, if any, are updated about how much ammunition remains in the cannon. The cannon remains in the mine. - Backport to D1X the network message for updating the contained ammunition in a vulcan cannon. zico added the basic feature in 7684ce92, but only applied it to D2X. With the change to let D1X multiplayer take ammunition from the cannon, D1X now needs the same feature. - Remove the special case to delete an empty cannon. Instead, let the cannon remain in the mine without ammunition. This allows a player in single player mode to leave behind a backup cannon, which could be useful if the player is killed and wishes to rearm before returning to the death site. Similarly, under the new rule that players in multiplayer can drain the cannon down to 0 ammunition, this removal allows the cannon to remain behind for someone else to take, rather than allowing it to be deleted by a player who already had an instance of it.
2022-02-05 13:30:56 +00:00
VALUE(MULTI_VULWPN_AMMO_ADJ , 6) \
VALUE(MULTI_PLAYER_INV , DXX_MP_SIZE_PLAYER_INVENTORY) \
D2X_MP_COMMANDS(VALUE) \
#if defined(DXX_BUILD_DESCENT_I)
#define DXX_MP_SIZE_ENDLEVEL_START 3
#define DXX_MP_SIZE_PLAYER_RELATED 58
#define DXX_MP_SIZE_PLAYER_INVENTORY 15
#define DXX_MP_SIZE_BEGIN_SYNC 37
#define DXX_MP_SIZE_DOOR_OPEN 4
#define D2X_MP_COMMANDS(VALUE)
#elif defined(DXX_BUILD_DESCENT_II)
#define DXX_MP_SIZE_ENDLEVEL_START 2
#define DXX_MP_SIZE_PLAYER_RELATED (98+10)
#define DXX_MP_SIZE_PLAYER_INVENTORY 21
#define DXX_MP_SIZE_BEGIN_SYNC 41
#define DXX_MP_SIZE_DOOR_OPEN 5
#define D2X_MP_COMMANDS(VALUE) \
VALUE(MULTI_MARKER , 55) \
VALUE(MULTI_GUIDED , 26) \
VALUE(MULTI_STOLEN_ITEMS , 1 + std::tuple_size<decltype(d_thief_unique_state::Stolen_items)>::value) \
VALUE(MULTI_WALL_STATUS , 6) /* send to new players */ \
2015-02-14 22:48:29 +00:00
VALUE(MULTI_SEISMIC , 5) \
VALUE(MULTI_LIGHT , 16) \
VALUE(MULTI_START_TRIGGER , 2) \
VALUE(MULTI_FLAGS , 6) \
VALUE(MULTI_DROP_BLOB , 2) \
VALUE(MULTI_SOUND_FUNCTION , 4) \
VALUE(MULTI_CAPTURE_BONUS , 2) \
VALUE(MULTI_GOT_FLAG , 2) \
VALUE(MULTI_DROP_FLAG , 8) \
VALUE(MULTI_FINISH_GAME , 2) \
VALUE(MULTI_ORB_BONUS , 3) \
VALUE(MULTI_GOT_ORB , 2) \
VALUE(MULTI_EFFECT_BLOWUP , 17) \
VALUE(MULTI_UPDATE_BUDDY_STATE, 7) \
#endif
#include "dxxsconf.h"
namespace dcx {
enum class multiplayer_data_priority : uint8_t;
}
enum class multiplayer_command_t : uint8_t
{
for_each_multiplayer_command(define_multiplayer_command)
};
template <multiplayer_command_t>
struct command_length;
#define define_command_length(NAME,SIZE) \
template <> \
struct command_length<multiplayer_command_t::NAME> : public std::integral_constant<unsigned, SIZE> {};
for_each_multiplayer_command(define_command_length);
namespace dcx {
template <multiplayer_command_t C>
struct multi_command : public std::array<uint8_t, command_length<C>::value>
{
constexpr multi_command()
{
this->front() = static_cast<uint8_t>(C);
}
};
template <multiplayer_command_t C>
static inline void multi_send_data(const multi_command<C> &buf, const multiplayer_data_priority priority)
{
multi::dispatch->send_data(buf, priority);
}
2014-05-24 00:20:30 +00:00
template <typename T>
static inline void multi_serialize_read(const uint8_t *const buf, T &t)
2014-05-24 00:20:30 +00:00
{
serial::reader::bytebuffer_t b(buf);
serial::process_buffer(b, t);
}
template <typename T, std::size_t Extent>
static inline void multi_serialize_read(const std::span<const uint8_t, Extent> buf, T &t)
{
multi_serialize_read(buf.data(), t);
}
2014-05-24 00:20:30 +00:00
template <typename T>
static inline void multi_serialize_write(const multiplayer_data_priority priority, const T &t)
2014-05-24 00:20:30 +00:00
{
constexpr size_t maximum_size = serial::message_type<T>::maximum_size;
2014-05-24 00:20:30 +00:00
uint8_t buf[maximum_size];
serial::writer::bytebuffer_t b(buf);
serial::process_buffer(b, t);
multi::dispatch->send_data(buf, priority);
2014-05-24 00:20:30 +00:00
}
template <multiplayer_command_t C>
using multiplayer_command = serial::pad<1, static_cast<uint8_t>(C)>;
2015-07-25 23:10:45 +00:00
template <multiplayer_command_t C>
using multiplayer_rspan = std::span<const uint8_t, command_length<C>::value>;
template <multiplayer_command_t C>
static constexpr auto multi_subspan_first(const std::span<const uint8_t> &data)
{
return data.first<command_length<C>::value>();
}
}
namespace dsx {
void multi_do_robot_explode(const d_robot_info_array &Robot_info, multiplayer_rspan<multiplayer_command_t::MULTI_ROBOT_EXPLODE> buf);
void multi_do_create_robot(const d_robot_info_array &Robot_info, const d_vclip_array &Vclip, playernum_t pnum, multiplayer_rspan<multiplayer_command_t::MULTI_CREATE_ROBOT> buf);
void multi_do_claim_robot(playernum_t pnum, const multiplayer_rspan<multiplayer_command_t::MULTI_ROBOT_CLAIM> buf);
void multi_do_robot_position(playernum_t pnum, const multiplayer_rspan<multiplayer_command_t::MULTI_ROBOT_POSITION> buf);
void multi_do_release_robot(playernum_t pnum, const multiplayer_rspan<multiplayer_command_t::MULTI_ROBOT_RELEASE> buf);
void multi_do_robot_fire(multiplayer_rspan<multiplayer_command_t::MULTI_ROBOT_FIRE> buf);
#if defined(DXX_BUILD_DESCENT_II)
void multi_recv_escort_goal(d_unique_buddy_state &, multiplayer_rspan<multiplayer_command_t::MULTI_UPDATE_BUDDY_STATE> buf);
#endif
void multi_do_boss_teleport(const d_robot_info_array &Robot_info, const d_vclip_array &Vclip, playernum_t pnum, multiplayer_rspan<multiplayer_command_t::MULTI_BOSS_TELEPORT> buf);
void multi_do_boss_cloak(multiplayer_rspan<multiplayer_command_t::MULTI_BOSS_CLOAK> buf);
void multi_do_boss_start_gate(multiplayer_rspan<multiplayer_command_t::MULTI_BOSS_START_GATE> buf);
void multi_do_boss_stop_gate(multiplayer_rspan<multiplayer_command_t::MULTI_BOSS_STOP_GATE> buf);
void multi_do_boss_create_robot(playernum_t pnum, multiplayer_rspan<multiplayer_command_t::MULTI_BOSS_CREATE_ROBOT> buf);
void multi_do_create_robot_powerups(playernum_t pnum, multiplayer_rspan<multiplayer_command_t::MULTI_CREATE_ROBOT_POWERUPS> buf);
}
2015-07-25 23:10:45 +00:00
#endif