Compare commits
No commits in common. "e164a1537c7d0742a6cb53da4b6159a25c372cc4" and "b328c17a13d5d86ac3260195b9e907d1d39760f6" have entirely different histories.
e164a1537c
...
b328c17a13
|
@ -1,5 +1,5 @@
|
||||||
cmake_minimum_required(VERSION 3.25)
|
cmake_minimum_required(VERSION 3.25)
|
||||||
project(graphs VERSION 0.1.9)
|
project(graphs VERSION 0.1.7)
|
||||||
|
|
||||||
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
|
||||||
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)
|
||||||
|
|
|
@ -46,9 +46,7 @@ struct bounding_box
|
||||||
class graph_t
|
class graph_t
|
||||||
{
|
{
|
||||||
friend struct loader_t;
|
friend struct loader_t;
|
||||||
|
|
||||||
friend class selector_t;
|
friend class selector_t;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector<node_t> nodes;
|
std::vector<node_t> nodes;
|
||||||
blt::hashmap_t<std::string, blt::u64> names_to_node;
|
blt::hashmap_t<std::string, blt::u64> names_to_node;
|
||||||
|
@ -102,18 +100,6 @@ class graph_t
|
||||||
edges.insert({n1, n2});
|
edges.insert({n1, n2});
|
||||||
}
|
}
|
||||||
|
|
||||||
void disconnect(const blt::u64 n1, const blt::u64 n2)
|
|
||||||
{
|
|
||||||
connected_nodes[n1].erase(n2);
|
|
||||||
connected_nodes[n2].erase(n1);
|
|
||||||
edges.erase({n1, n2});
|
|
||||||
}
|
|
||||||
|
|
||||||
bool is_connected(const blt::u64 n1, const blt::u64 n2)
|
|
||||||
{
|
|
||||||
return edges.contains({n1, n2});
|
|
||||||
}
|
|
||||||
|
|
||||||
void connect(const edge_t& edge)
|
void connect(const edge_t& edge)
|
||||||
{
|
{
|
||||||
connected_nodes[edge.getFirst()].insert(edge.getSecond());
|
connected_nodes[edge.getFirst()].insert(edge.getSecond());
|
||||||
|
|
|
@ -75,8 +75,6 @@ struct node_t
|
||||||
|
|
||||||
struct edge_t
|
struct edge_t
|
||||||
{
|
{
|
||||||
// fuck you too :3
|
|
||||||
friend selector_t;
|
|
||||||
float ideal_spring_length = conf::DEFAULT_SPRING_LENGTH;
|
float ideal_spring_length = conf::DEFAULT_SPRING_LENGTH;
|
||||||
float thickness = conf::DEFAULT_THICKNESS;
|
float thickness = conf::DEFAULT_THICKNESS;
|
||||||
blt::color4 color = conf::EDGE_COLOR;
|
blt::color4 color = conf::EDGE_COLOR;
|
||||||
|
|
|
@ -98,7 +98,7 @@ std::optional<loader_t> loader_t::load_for(engine_t& engine, const blt::gfx::win
|
||||||
auto ideal_length = load_with_default(edge, "length", conf::DEFAULT_SPRING_LENGTH);
|
auto ideal_length = load_with_default(edge, "length", conf::DEFAULT_SPRING_LENGTH);
|
||||||
auto thickness = load_with_default(edge, "thickness", conf::DEFAULT_THICKNESS);
|
auto thickness = load_with_default(edge, "thickness", conf::DEFAULT_THICKNESS);
|
||||||
|
|
||||||
edge_t e{graph.names_to_node[index1], graph.names_to_node[index2]};
|
::edge_t e{graph.names_to_node[index1], graph.names_to_node[index2]};
|
||||||
e.ideal_spring_length = ideal_length;
|
e.ideal_spring_length = ideal_length;
|
||||||
e.thickness = thickness;
|
e.thickness = thickness;
|
||||||
|
|
||||||
|
|
|
@ -114,20 +114,11 @@ void selector_t::process_keyboard(blt::i32 width, blt::i32 height)
|
||||||
if (blt::gfx::keyPressedLastFrame())
|
if (blt::gfx::keyPressedLastFrame())
|
||||||
{
|
{
|
||||||
if (blt::gfx::isKeyPressed(GLFW_KEY_C))
|
if (blt::gfx::isKeyPressed(GLFW_KEY_C))
|
||||||
{
|
|
||||||
if (primary_selection != -1 && secondary_selection != -1)
|
|
||||||
{
|
|
||||||
if (graph.is_connected(primary_selection, secondary_selection))
|
|
||||||
graph.disconnect(primary_selection, secondary_selection);
|
|
||||||
else
|
|
||||||
graph.connect(primary_selection, secondary_selection);
|
|
||||||
} else
|
|
||||||
{
|
{
|
||||||
if (placement)
|
if (placement)
|
||||||
destroy_node(primary_selection);
|
destroy_node(primary_selection);
|
||||||
else
|
else
|
||||||
create_placement_node(mouse_pos);
|
create_placement_node(mouse_pos);
|
||||||
}
|
|
||||||
} else if (blt::gfx::isKeyPressed(GLFW_KEY_X))
|
} else if (blt::gfx::isKeyPressed(GLFW_KEY_X))
|
||||||
{
|
{
|
||||||
if (primary_selection != -1)
|
if (primary_selection != -1)
|
||||||
|
@ -201,45 +192,13 @@ void selector_t::destroy_node(blt::i64 node)
|
||||||
{
|
{
|
||||||
auto& node_v = graph.nodes[node];
|
auto& node_v = graph.nodes[node];
|
||||||
graph.names_to_node.erase(node_v.name);
|
graph.names_to_node.erase(node_v.name);
|
||||||
erase_if(graph.edges, [node](const edge_t& e) {
|
erase_if(graph.edges, [node](const edge_t& v) {
|
||||||
return static_cast<blt::i64>(e.getFirst()) == node || static_cast<blt::i64>(e.getSecond()) == node;
|
return static_cast<blt::i64>(v.getFirst()) == node || static_cast<blt::i64>(v.getSecond()) == node;
|
||||||
});
|
});
|
||||||
std::vector<edge_t> corrected_edges;
|
|
||||||
for (const edge_t& v : graph.edges)
|
|
||||||
{
|
|
||||||
auto copy = v;
|
|
||||||
auto c = static_cast<blt::u64>(node);
|
|
||||||
if (copy.i1 > c)
|
|
||||||
copy.i1--;
|
|
||||||
if (copy.i2 > c)
|
|
||||||
copy.i2--;
|
|
||||||
if (v.i1 > c || v.i2 > c)
|
|
||||||
corrected_edges.push_back(copy);
|
|
||||||
}
|
|
||||||
erase_if(graph.edges, [node](const edge_t& e) {
|
|
||||||
return static_cast<blt::i64>(e.getFirst()) > node || static_cast<blt::i64>(e.getSecond()) > node;
|
|
||||||
});
|
|
||||||
for (const auto& v : corrected_edges)
|
|
||||||
graph.edges.insert(v);
|
|
||||||
graph.connected_nodes.erase(node);
|
graph.connected_nodes.erase(node);
|
||||||
for (auto& v : graph.connected_nodes)
|
for (auto& v : graph.connected_nodes)
|
||||||
{
|
{
|
||||||
auto& map = v.second;
|
v.second.erase(node);
|
||||||
// generate the list of corrected nodes.
|
|
||||||
std::vector<blt::u64> corrected_nodes;
|
|
||||||
for (auto& n : map)
|
|
||||||
{
|
|
||||||
// shift back then nodes after this one by one
|
|
||||||
if (static_cast<blt::i64>(n) > node)
|
|
||||||
{
|
|
||||||
corrected_nodes.push_back(n - 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
erase_if(map, [node](blt::u64 n) {
|
|
||||||
return static_cast<blt::i64>(n) > node;
|
|
||||||
});
|
|
||||||
for (const auto& n : corrected_nodes)
|
|
||||||
map.insert(n);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
graph.nodes.erase(graph.nodes.begin() + node);
|
graph.nodes.erase(graph.nodes.begin() + node);
|
||||||
|
|
Loading…
Reference in New Issue