dxx-rebirth/similar/main/segment.cpp
Kp 12b57e84e6 Switch most in-tree http:// links to https://
For each link given as http://, verify that the site is accessible over
https:// and, if so, switch to it.  These domains were converted:

* llvm.org
* clang.llvm.org
* en.cppreference.com
* www.dxx-rebirth.com
* www.libsdl.org
* www.scons.org
2018-09-02 00:57:29 +00:00

105 lines
2.4 KiB
C++

/*
* This file is part of the DXX-Rebirth project <https://www.dxx-rebirth.com/>.
* 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.
*/
/*
*
* Segment Loading Stuff
*
*/
#include "segment.h"
#include "physfsx.h"
#include "physfs-serial.h"
namespace dcx {
#if 0
DEFINE_SERIAL_UDT_TO_MESSAGE(wallnum_t, w, (w.value));
ASSERT_SERIAL_UDT_MESSAGE_SIZE(wallnum_t, 2);
#endif
namespace {
struct composite_side
{
const shared_side &sside;
const unique_side &uside;
};
DEFINE_SERIAL_UDT_TO_MESSAGE(composite_side, s, (s.sside.wall_num, s.uside.tmap_num, s.uside.tmap_num2));
ASSERT_SERIAL_UDT_MESSAGE_SIZE(composite_side, 6);
}
void segment_side_wall_tmap_write(PHYSFS_File *fp, const shared_side &sside, const unique_side &uside)
{
PHYSFSX_serialize_write(fp, composite_side{sside, uside});
}
}
#if defined(DXX_BUILD_DESCENT_II)
namespace dsx {
/*
* reads a delta_light structure from a PHYSFS_File
*/
void delta_light_read(delta_light *dl, PHYSFS_File *fp)
{
dl->segnum = PHYSFSX_readShort(fp);
dl->sidenum = PHYSFSX_readByte(fp);
PHYSFSX_readByte(fp);
dl->vert_light[0] = PHYSFSX_readByte(fp);
dl->vert_light[1] = PHYSFSX_readByte(fp);
dl->vert_light[2] = PHYSFSX_readByte(fp);
dl->vert_light[3] = PHYSFSX_readByte(fp);
}
/*
* reads a dl_index structure from a PHYSFS_File
*/
void dl_index_read(dl_index *di, PHYSFS_File *fp)
{
di->segnum = PHYSFSX_readShort(fp);
di->sidenum = PHYSFSX_readByte(fp);
di->count = PHYSFSX_readByte(fp);
di->index = PHYSFSX_readShort(fp);
}
void segment2_write(const vcsegptr_t s2, PHYSFS_File *fp)
{
PHYSFSX_writeU8(fp, s2->special);
PHYSFSX_writeU8(fp, s2->matcen_num);
PHYSFSX_writeU8(fp, s2->station_idx);
PHYSFSX_writeU8(fp, s2->s2_flags);
PHYSFSX_writeFix(fp, s2->static_light);
}
void delta_light_write(const delta_light *dl, PHYSFS_File *fp)
{
PHYSFS_writeSLE16(fp, dl->segnum);
PHYSFSX_writeU8(fp, dl->sidenum);
PHYSFSX_writeU8(fp, 0);
PHYSFSX_writeU8(fp, dl->vert_light[0]);
PHYSFSX_writeU8(fp, dl->vert_light[1]);
PHYSFSX_writeU8(fp, dl->vert_light[2]);
PHYSFSX_writeU8(fp, dl->vert_light[3]);
}
void dl_index_write(const dl_index *di, PHYSFS_File *fp)
{
PHYSFS_writeSLE16(fp, di->segnum);
PHYSFSX_writeU8(fp, di->sidenum);
PHYSFSX_writeU8(fp, di->count);
PHYSFS_writeSLE16(fp, di->index);
}
}
#endif