X-Git-Url: http://git.tdb.fi/?p=netvis.git;a=blobdiff_plain;f=source%2Fnetvis.cpp;h=cece749e9be6a2ab6003e5d02447673a5ad2d983;hp=7f0ac9e6b5de33f0d9fec3ca86bd5721ebeab22f;hb=c147c9caaf9bc2f6323baf188a438ced9f0f5894;hpb=6ffe2b950143c5474659cbca2bbcdf58d6b8322c diff --git a/source/netvis.cpp b/source/netvis.cpp index 7f0ac9e..cece749 100644 --- a/source/netvis.cpp +++ b/source/netvis.cpp @@ -29,6 +29,7 @@ Distributed unter the GPL #include "host.h" #include "netvis.h" #include "packet.h" +#include "port.h" #include "resolver.h" using namespace std; @@ -211,9 +212,9 @@ void NetVis::tick() GL::push_matrix(); GL::translate(-500, 360, 0); unsigned n = 0; - for(map::iterator i=port_colors.begin(); (i!=port_colors.end() && n<20); ++i, ++n) + for(map::iterator i=ports.begin(); (i!=ports.end() && n<50); ++i, ++n) { - GL::Color &color = i->second; + const GL::Color &color = i->second.get_color(); imm.begin(GL::QUADS); imm.color(color.r, color.g, color.b, color.a); @@ -237,11 +238,11 @@ void NetVis::tick() GL::translate(-484, 361, 0); GL::scale_uniform(10); n = 0; - for(map::iterator i=port_colors.begin(); (i!=port_colors.end() && n<20); ++i, ++n) + for(map::iterator i=ports.begin(); (i!=ports.end() && n<50); ++i, ++n) { GL::Immediate imm2((GL::COLOR4_UBYTE, GL::TEXCOORD2, GL::VERTEX2)); imm.color(1.0f, 1.0f, 1.0f); - font->draw_string(format("%d", i->first), imm2); + font->draw_string(i->second.get_name(), imm2); GL::translate(0, -1.2, 0); } @@ -284,23 +285,54 @@ Host &NetVis::get_host(unsigned a) return *host; } -GL::Color &NetVis::get_port_color(unsigned port) +GL::Color NetVis::generate_color(bool privileged) const { - map::iterator i = port_colors.find(port); - if(i!=port_colors.end()) + GL::Color color; + color.r = rand()*1.0/RAND_MAX; + color.g = rand()*1.0/RAND_MAX; + color.b = rand()*1.0/RAND_MAX; + float high = max(max(color.r, color.g), color.b); + color = color*(1.0/high); + if(privileged) + { + float low = min(min(color.r, color.g), color.b); + color = (color+-low)*(1/(1-low)); + } + else + color = color*0.6+0.4; + return color; +} + +const Port &NetVis::get_port(unsigned number) +{ + map::iterator i = ports.find(number); + if(i!=ports.end()) return i->second; - GL::Color color; - while(1) + GL::Color best_color; + float best_score = 0; + for(unsigned j=0; (j<100 && best_score<1); ++j) { - color.r = rand()*1.0/RAND_MAX; - color.g = rand()*1.0/RAND_MAX; - color.b = rand()*1.0/RAND_MAX; - if(color.r>0.5 || color.g>0.5 || color.b>0.7) - break; + GL::Color color = generate_color(number<1024); + + float score = 2; + for(i=ports.begin(); i!=ports.end(); ++i) + { + const GL::Color &other = i->second.get_color(); + float dr = color.r-other.r; + float dg = color.g-other.g; + float db = color.b-other.b; + score = min(score, dr*dr+dg*dg+db*db); + } + if(score>best_score) + { + best_score = score; + best_color = color; + } } - color.a = 0.4f; - return port_colors[port] = color; + best_color.a = 0.4f; + i = ports.insert(map::value_type(number, Port(number, best_color))).first; + return i->second; } void NetVis::key_press(unsigned key, unsigned, wchar_t) @@ -343,7 +375,7 @@ void NetVis::capture_handler(unsigned char *user, const pcap_pkthdr *, const uns float throttle = shost.send_packet(); if(throttle<1) { - self->packets.push_back(new Packet(shost, dhost, self->get_port_color(port), size)); + self->packets.push_back(new Packet(shost, dhost, self->get_port(port).get_color(), size)); self->packets.back()->tick(-throttle*Msp::Time::sec); }