dice tool working with >2 peers
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Failing after 3m18s
ContinuousIntegration / linux (push) Successful in 2m42s
ContinuousIntegration / android (push) Failing after 5m25s
ContinuousDelivery / windows (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Failing after 3m18s
ContinuousIntegration / linux (push) Successful in 2m42s
ContinuousIntegration / android (push) Failing after 5m25s
ContinuousDelivery / windows (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
This commit is contained in:
parent
c88aa92a8d
commit
a5b5ab97df
2
external/solanaceae_tox_p2prng
vendored
2
external/solanaceae_tox_p2prng
vendored
@ -1 +1 @@
|
|||||||
Subproject commit ecce043740066505a7b1c3672e3949bf3ffb9137
|
Subproject commit 3869731e0dbcc4a9a6e06399ffaf11f3a771ce3e
|
@ -119,44 +119,120 @@ float DiceTool::render(float) {
|
|||||||
c_vec.emplace_back(_cr, cv);
|
c_vec.emplace_back(_cr, cv);
|
||||||
}
|
}
|
||||||
|
|
||||||
auto new_id = _p2prng.newGernationPeers(c_vec, ByteSpan{reinterpret_cast<uint8_t*>(&g_sides), sizeof(g_sides)});
|
std::vector<uint8_t> is {'D', 'I', 'C', 'E'};
|
||||||
if (!new_id.empty()) {
|
is.push_back(reinterpret_cast<uint8_t*>(&g_sides)[0]);
|
||||||
auto& new_roll = _rolls.emplace_back();
|
is.push_back(reinterpret_cast<uint8_t*>(&g_sides)[1]);
|
||||||
new_roll.id = new_id;
|
static_assert(sizeof(g_sides) == 2);
|
||||||
}
|
|
||||||
|
auto new_id = _p2prng.newGernationPeers(c_vec, ByteSpan{is});
|
||||||
|
//if (!new_id.empty()) {
|
||||||
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui::SeparatorText("Rolls");
|
ImGui::SeparatorText("Rolls");
|
||||||
|
|
||||||
// list of past rolls and their state
|
// list of past rolls and their state
|
||||||
//ImGui::CollapsingHeader("d");
|
for (auto it = _rolls.crbegin(); it != _rolls.crend(); it++) {
|
||||||
ImGui::Text("d6 [?] hmac 4/6");
|
const auto& roll = *it;
|
||||||
ImGui::Text("d6 [?] secret 1/3");
|
|
||||||
ImGui::Text("d6 [1]");
|
std::string text{"d"};
|
||||||
|
text += std::to_string(roll.sides);
|
||||||
|
text += " [";
|
||||||
|
if (roll.state == P2PRNG::DONE) {
|
||||||
|
// dice start at 1
|
||||||
|
text += std::to_string(int(roll.final_result)+1);
|
||||||
|
} else {
|
||||||
|
text += "?";
|
||||||
|
}
|
||||||
|
text += "]";
|
||||||
|
|
||||||
|
if (roll.state == P2PRNG::INIT) {
|
||||||
|
text += " INIT";
|
||||||
|
} else if (roll.state == P2PRNG::HMAC) {
|
||||||
|
text += " HMAC ";
|
||||||
|
text += std::to_string(roll.state_number_1);
|
||||||
|
text += "/";
|
||||||
|
text += std::to_string(roll.state_number_2);
|
||||||
|
} else if (roll.state == P2PRNG::SECRET) {
|
||||||
|
text += " SECRET ";
|
||||||
|
text += std::to_string(roll.state_number_1);
|
||||||
|
text += "/";
|
||||||
|
text += std::to_string(roll.state_number_2);
|
||||||
|
}
|
||||||
|
|
||||||
|
ImGui::TextUnformatted(text.c_str());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
|
|
||||||
return 10.f;
|
return 10.f;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DiceTool::onEvent(const P2PRNG::Events::Init&) {
|
bool DiceTool::onEvent(const P2PRNG::Events::Init& e) {
|
||||||
|
if (e.initial_state.size != 4+2) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DiceTool::onEvent(const P2PRNG::Events::HMAC&) {
|
if (e.initial_state[0] != 'D' || e.initial_state[1] != 'I' || e.initial_state[2] != 'C' || e.initial_state[3] != 'E') {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DiceTool::onEvent(const P2PRNG::Events::Secret&) {
|
auto& new_roll = _rolls.emplace_back();
|
||||||
|
new_roll.id = {e.id.cbegin(), e.id.cend()};
|
||||||
|
new_roll.state = P2PRNG::State::INIT;
|
||||||
|
reinterpret_cast<uint8_t*>(&new_roll.sides)[0] = e.initial_state[4];
|
||||||
|
reinterpret_cast<uint8_t*>(&new_roll.sides)[1] = e.initial_state[5];
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DiceTool::onEvent(const P2PRNG::Events::HMAC& e) {
|
||||||
|
auto roll_it = std::find_if(_rolls.begin(), _rolls.end(), [&e](const auto& a) -> bool { return ByteSpan{a.id} == e.id; });
|
||||||
|
if (roll_it == _rolls.cend()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DiceTool::onEvent(const P2PRNG::Events::Done&) {
|
roll_it->state = P2PRNG::State::HMAC;
|
||||||
std::cout << "got a done!!!!!!!!!!!!!!!!!!\n";
|
roll_it->state_number_1 = e.have;
|
||||||
|
roll_it->state_number_2 = e.out_of;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DiceTool::onEvent(const P2PRNG::Events::Secret& e) {
|
||||||
|
auto roll_it = std::find_if(_rolls.begin(), _rolls.end(), [&e](const auto& a) -> bool { return ByteSpan{a.id} == e.id; });
|
||||||
|
if (roll_it == _rolls.cend()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
roll_it->state = P2PRNG::State::SECRET;
|
||||||
|
roll_it->state_number_1 = e.have;
|
||||||
|
roll_it->state_number_2 = e.out_of;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DiceTool::onEvent(const P2PRNG::Events::Done& e) {
|
||||||
|
auto roll_it = std::find_if(_rolls.begin(), _rolls.end(), [&e](const auto& a) -> bool { return ByteSpan{a.id} == e.id; });
|
||||||
|
if (roll_it == _rolls.cend()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
roll_it->state = P2PRNG::State::DONE;
|
||||||
|
roll_it->state_number_1 = 0;
|
||||||
|
roll_it->state_number_2 = 0;
|
||||||
|
roll_it->final_result = (e.result[0] | (e.result[1] << 8)) % roll_it->sides;
|
||||||
|
|
||||||
|
std::cout << "done die roll " << roll_it->final_result << "\n";
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DiceTool::onEvent(const P2PRNG::Events::ValError& e) {
|
||||||
|
auto roll_it = std::find_if(_rolls.cbegin(), _rolls.cend(), [&e](const auto& a) -> bool { return ByteSpan{a.id} == e.id; });
|
||||||
|
if (roll_it == _rolls.cend()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DiceTool::onEvent(const P2PRNG::Events::ValError&) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ class DiceTool : public P2PRNGEventI {
|
|||||||
struct Rolls {
|
struct Rolls {
|
||||||
std::vector<uint8_t> id;
|
std::vector<uint8_t> id;
|
||||||
|
|
||||||
|
uint16_t sides {};
|
||||||
|
|
||||||
P2PRNG::State state {P2PRNG::State::UNKNOWN};
|
P2PRNG::State state {P2PRNG::State::UNKNOWN};
|
||||||
uint16_t state_number_1 {};
|
uint16_t state_number_1 {};
|
||||||
uint16_t state_number_2 {};
|
uint16_t state_number_2 {};
|
||||||
|
Loading…
Reference in New Issue
Block a user