#include "freeExtend.h" #include std::string BuilderFreeExtend::hint() const { if (p1) { return "Pick next point"; } return "Pick start node"; } void BuilderFreeExtend::move( Network * network, const GeoData * geoData, const SDL_MouseMotionEvent &, const Ray & ray) { if (p1) { if (const auto p = network->intersectRayNodes(ray)) { candidateLinks.objects = network->candidateJoins(*p1, p->pos); } else if (const auto p = geoData->intersectRay(ray)) { candidateLinks.objects = network->candidateExtend(*p1, p->first); } else { candidateLinks.removeAll(); } } else { candidateLinks.removeAll(); } } void BuilderFreeExtend::click( Network * network, const GeoData * geoData, const SDL_MouseButtonEvent & e, const Ray & ray) { switch (e.button) { case SDL_BUTTON_LEFT: if (p1) { if (const auto p = network->intersectRayNodes(ray)) { network->addJoins(*p1, p->pos); p1 = p->pos; } else if (const auto p = geoData->intersectRay(ray)) { network->addExtend(*p1, p->first); p1 = p->first; } } else { if (const auto p = network->intersectRayNodes(ray)) { p1 = p->pos; } } return; case SDL_BUTTON_MIDDLE: p1.reset(); return; } }