mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Added all raknet headers for full raknet support Added Testclass "TestCB.cpp" which is a test implementation for raknet plugin "File List Transfer". We will use this plugin for file transfer in multiplayer git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@2638 3b4a5df2-a311-0410-b5c6-a8a6f20db521
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
#ifndef __SIMPLE_DATABASE_COMMON_H
|
|
#define __SIMPLE_DATABASE_COMMON_H
|
|
|
|
#include "DS_Table.h"
|
|
|
|
namespace RakNet
|
|
{
|
|
class BitStream;
|
|
};
|
|
|
|
#define _SIMPLE_DATABASE_PASSWORD_LENGTH 32
|
|
#define _SIMPLE_DATABASE_TABLE_NAME_LENGTH 32
|
|
|
|
#define SYSTEM_ID_COLUMN_NAME "__SystemAddress"
|
|
#define SYSTEM_GUID_COLUMN_NAME "__SystemGuid"
|
|
#define LAST_PING_RESPONSE_COLUMN_NAME "__lastPingResponseTime"
|
|
#define NEXT_PING_SEND_COLUMN_NAME "__nextPingSendTime"
|
|
|
|
struct DatabaseFilter
|
|
{
|
|
void Serialize(RakNet::BitStream *out);
|
|
bool Deserialize(RakNet::BitStream *in);
|
|
|
|
DataStructures::Table::Cell cellValue;
|
|
DataStructures::Table::FilterQueryType operation;
|
|
DataStructures::Table::ColumnType columnType;
|
|
char columnName[_TABLE_MAX_COLUMN_NAME_LENGTH];
|
|
};
|
|
|
|
/// The value to write to a cell in a remote database.
|
|
struct DatabaseCellUpdate
|
|
{
|
|
void Serialize(RakNet::BitStream *out);
|
|
bool Deserialize(RakNet::BitStream *in);
|
|
|
|
DataStructures::Table::Cell cellValue;
|
|
DataStructures::Table::ColumnType columnType;
|
|
char columnName[_TABLE_MAX_COLUMN_NAME_LENGTH];
|
|
};
|
|
|
|
enum RowUpdateMode
|
|
{
|
|
// Only update an existing row. rowId is required.
|
|
RUM_UPDATE_EXISTING_ROW,
|
|
|
|
// Update an existing row if present - otherwise add a new row. rowId is required.
|
|
RUM_UPDATE_OR_ADD_ROW,
|
|
|
|
// Add a new row. If rowId is passed then the row will only be added if this id doesn't already exist.
|
|
// If rowId is not passed and the table requires a rowId the creation fails.
|
|
RUM_ADD_NEW_ROW,
|
|
};
|
|
|
|
#endif
|