354d022967
commit f44d146e4ac906ff898e8968c6857fd2280f6d20 Author: project-bo4 <127137346+project-bo4@users.noreply.github.com> Date: Thu May 11 13:39:29 2023 -0700 remove lpc package from repository commit 29fb0f63e50de468ab0b9db35f7e8fdadf58afc3 Author: project-bo4 <themanwithantidote@gmail.com> Date: Thu May 11 13:06:13 2023 -0700 generic improvements + added identity configuration + objectstore improvements + added battlenet 'US' servers to blocklist + some other minor improvements commit 5d5e31099ebcce5a637b9a02d4936a97fb0802a7 Author: project-bo4 <themanwithantidote@gmail.com> Date: Sat Mar 25 16:32:52 2023 -0700 lpc improvements + fix lpc issue with foreign languages(non-english) not being considered in listing + check lpc files pre-start and warn user if missing any of core items commit 2de1a54b6f4cc5c44dc906871021cfbc85057ca9 Author: project-bo4 <themanwithantidote@gmail.com> Date: Thu Mar 23 12:45:56 2023 -0700 demonware improvements + handle object store uploadUserObject + silence bdUNK125 commit 710dcc3ec6178071d67c27e5bf6705f08cabe7e2 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 13:43:56 2023 -0700 forgot to update names commit 217682dfb07b35f7a09399fb2698924bb7fe8b77 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 11:09:18 2023 -0700 upload lpc and update readme commit 83f812b33b90791a8d13b9468f27da51e0a4f2b9 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 10:53:43 2023 -0700 demonware emulator + demonware emulator + platform name and id + xxhash and picoproto - remove g_runframe hook -disable discovery(save time) + improvements to utils + add new resources
199 lines
3.7 KiB
C++
199 lines
3.7 KiB
C++
#pragma once
|
|
|
|
#include "bit_buffer.hpp"
|
|
#include "byte_buffer.hpp"
|
|
#include "data_types.hpp"
|
|
|
|
namespace demonware
|
|
{
|
|
class reply
|
|
{
|
|
public:
|
|
reply() = default;
|
|
|
|
reply(reply&&) = delete;
|
|
reply(const reply&) = delete;
|
|
reply& operator=(reply&&) = delete;
|
|
reply& operator=(const reply&) = delete;
|
|
|
|
virtual ~reply() = default;
|
|
virtual std::string data() = 0;
|
|
};
|
|
|
|
class raw_reply : public reply
|
|
{
|
|
protected:
|
|
std::string buffer_;
|
|
|
|
public:
|
|
raw_reply() = default;
|
|
|
|
explicit raw_reply(std::string data) : buffer_(std::move(data))
|
|
{
|
|
}
|
|
|
|
std::string data() override
|
|
{
|
|
return this->buffer_;
|
|
}
|
|
};
|
|
|
|
class typed_reply : public raw_reply
|
|
{
|
|
public:
|
|
typed_reply(const uint8_t _type) : type_(_type)
|
|
{
|
|
}
|
|
|
|
protected:
|
|
uint8_t type() const { return this->type_; }
|
|
|
|
private:
|
|
uint8_t type_;
|
|
};
|
|
|
|
class encrypted_reply final : public typed_reply
|
|
{
|
|
public:
|
|
encrypted_reply(const uint8_t type, bit_buffer* bbuffer) : typed_reply(type)
|
|
{
|
|
this->buffer_.append(bbuffer->get_buffer());
|
|
}
|
|
|
|
encrypted_reply(const uint8_t type, byte_buffer* bbuffer) : typed_reply(type)
|
|
{
|
|
this->buffer_.append(bbuffer->get_buffer());
|
|
}
|
|
|
|
std::string data() override;
|
|
};
|
|
|
|
class unencrypted_reply final : public typed_reply
|
|
{
|
|
public:
|
|
unencrypted_reply(const uint8_t _type, bit_buffer* bbuffer) : typed_reply(_type)
|
|
{
|
|
this->buffer_.append(bbuffer->get_buffer());
|
|
}
|
|
|
|
unencrypted_reply(const uint8_t _type, byte_buffer* bbuffer) : typed_reply(_type)
|
|
{
|
|
this->buffer_.append(bbuffer->get_buffer());
|
|
}
|
|
|
|
std::string data() override;
|
|
};
|
|
|
|
class service_server;
|
|
|
|
class remote_reply final
|
|
{
|
|
public:
|
|
remote_reply(service_server* server, uint8_t _type) : type_(_type), server_(server)
|
|
{
|
|
}
|
|
|
|
void send(bit_buffer* buffer, bool encrypted);
|
|
void send(byte_buffer* buffer, bool encrypted);
|
|
|
|
uint8_t type() const { return this->type_; }
|
|
|
|
private:
|
|
uint8_t type_;
|
|
service_server* server_;
|
|
};
|
|
|
|
class service_reply final
|
|
{
|
|
public:
|
|
service_reply(service_server* _server, const uint8_t _type, const uint32_t _error, const bool _structed)
|
|
: type_(_type), error_(_error), structed_(_structed), reply_(_server, 1)
|
|
{
|
|
}
|
|
|
|
uint64_t send()
|
|
{
|
|
static uint64_t id = 0x0000000000000000;
|
|
const auto transaction_id = ++id;
|
|
|
|
byte_buffer buffer;
|
|
buffer.write_uint64(transaction_id);
|
|
buffer.write_uint32(this->error_);
|
|
buffer.write_ubyte(this->type_);
|
|
|
|
if (!this->error_)
|
|
{
|
|
if (!structed_)
|
|
{
|
|
buffer.write_uint32(uint32_t(this->objects_.size()));
|
|
if (!this->objects_.empty())
|
|
{
|
|
buffer.write_uint32(uint32_t(this->objects_.size()));
|
|
|
|
for (auto& object : this->objects_)
|
|
{
|
|
object->serialize(&buffer);
|
|
}
|
|
|
|
this->objects_.clear();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!this->objects_.empty())
|
|
{
|
|
this->objects_[0]->serialize(&buffer);
|
|
this->objects_.clear();
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
buffer.write_uint64(transaction_id);
|
|
}
|
|
|
|
this->reply_.send(&buffer, true);
|
|
return transaction_id;
|
|
}
|
|
|
|
void add(const std::shared_ptr<bdTaskResult>& object)
|
|
{
|
|
this->objects_.push_back(object);
|
|
}
|
|
|
|
void add(bdTaskResult* object)
|
|
{
|
|
this->add(std::shared_ptr<bdTaskResult>(object));
|
|
}
|
|
|
|
private:
|
|
uint8_t type_;
|
|
uint32_t error_;
|
|
bool structed_;
|
|
remote_reply reply_;
|
|
std::vector<std::shared_ptr<bdTaskResult>> objects_;
|
|
};
|
|
|
|
class structure_reply final
|
|
{
|
|
public:
|
|
structure_reply(service_server* _server, const uint8_t _type)
|
|
: reply_(_server, _type, 0, 1)
|
|
{
|
|
}
|
|
|
|
uint64_t send(const std::string& buffer)
|
|
{
|
|
auto result = new bdStructedDataBuffer;
|
|
result->structed_data_protobuffer = buffer;
|
|
|
|
this->reply_.add(result);
|
|
|
|
return this->reply_.send();
|
|
}
|
|
|
|
private:
|
|
service_reply reply_;
|
|
};
|
|
}
|