mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +00:00
rogueviz:: fullnet as separate file
This commit is contained in:
parent
24dd8c9376
commit
0a7e413f87
70
rogueviz/fullnet.cpp
Normal file
70
rogueviz/fullnet.cpp
Normal file
@ -0,0 +1,70 @@
|
||||
// Hyperbolic Rogue
|
||||
// Copyright (C) 2011-2016 Zeno Rogue, see 'hyper.cpp' for details
|
||||
|
||||
// Hyperbolic geometry is a good tool to visualize data,
|
||||
// especially trees and scale-free networks. This file
|
||||
// uses HyperRogue to browse such vizualizations.
|
||||
|
||||
// Since it is not of use for general HyperRogue players,
|
||||
// it is disabled by default -- compile with the ROGUEVIZ flag to enable this.
|
||||
|
||||
// How to use:
|
||||
|
||||
// hyper -embed <start of filename> -- visualize a social network
|
||||
// embedded into hyperbolic plane, see:
|
||||
// https://bitbucket.org/HaiZhung/hyperbolic-embedder/overview
|
||||
// (it uses the same format)
|
||||
|
||||
// hyper -tess <parameter file> -- visualize a horocyclic tesselation,
|
||||
|
||||
#include "rogueviz.h"
|
||||
|
||||
namespace rogueviz {
|
||||
|
||||
namespace fullnet {
|
||||
|
||||
int fullnet_id;
|
||||
|
||||
void drawExtra() {
|
||||
|
||||
if(vizid == &fullnet_id) {
|
||||
for(map<cell*, transmatrix>::iterator it = gmatrix.begin(); it != gmatrix.end(); it++) {
|
||||
cell *c = it->first;
|
||||
c->wall = waChasm;
|
||||
}
|
||||
int index = 0;
|
||||
|
||||
for(map<cell*, transmatrix>::iterator it = gmatrix.begin(); it != gmatrix.end(); it++) {
|
||||
cell *c = it->first;
|
||||
bool draw = true;
|
||||
for(int i=0; i<isize(named); i++) if(named[i] == c) draw = false;
|
||||
if(draw && gmatrix.count(c))
|
||||
queuedisk(it->second, dftcolor, false, NULL, index++);
|
||||
// queuepolyat(it->second, shDisk, dftcolor., PPR::LINE);
|
||||
}
|
||||
|
||||
for(int i=0; i<isize(named); i++) if(gmatrix.count(named[i])) {
|
||||
string s = ""; s += 'A'+i;
|
||||
queuestr(gmatrix[named[i]], 1, s, forecolor, 1);
|
||||
}
|
||||
|
||||
canmove = true; items[itOrbAether] = true;
|
||||
}
|
||||
}
|
||||
|
||||
auto hooks =
|
||||
addHook(hooks_frame, 0, drawExtra) +
|
||||
addHook(hooks_args, 100, [] {
|
||||
using namespace arg;
|
||||
if(argis("-net")) {
|
||||
PHASE(3);
|
||||
init(&fullnet_id, 0);
|
||||
linepatterns::patTriTree.color = 0x30;
|
||||
linepatterns::patTriOther.color = 0x10;
|
||||
linepatterns::patTriRings.color = 0xFF;
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
});
|
||||
|
||||
}}
|
@ -880,33 +880,6 @@ bool rogueviz_hud() {
|
||||
return true;
|
||||
}
|
||||
|
||||
void drawExtra() {
|
||||
|
||||
if(kind == kFullNet) {
|
||||
for(map<cell*, transmatrix>::iterator it = gmatrix.begin(); it != gmatrix.end(); it++) {
|
||||
cell *c = it->first;
|
||||
c->wall = waChasm;
|
||||
}
|
||||
int index = 0;
|
||||
|
||||
for(map<cell*, transmatrix>::iterator it = gmatrix.begin(); it != gmatrix.end(); it++) {
|
||||
cell *c = it->first;
|
||||
bool draw = true;
|
||||
for(int i=0; i<isize(named); i++) if(named[i] == c) draw = false;
|
||||
if(draw && gmatrix.count(c))
|
||||
queuedisk(it->second, dftcolor, false, NULL, index++);
|
||||
// queuepolyat(it->second, shDisk, dftcolor., PPR::LINE);
|
||||
}
|
||||
|
||||
for(int i=0; i<isize(named); i++) if(gmatrix.count(named[i])) {
|
||||
string s = ""; s += 'A'+i;
|
||||
queuestr(gmatrix[named[i]], 1, s, forecolor, 1);
|
||||
}
|
||||
|
||||
canmove = true; items[itOrbAether] = true;
|
||||
}
|
||||
}
|
||||
|
||||
inline hookset<bool(int&, string&, FILE*)> *hooks_readcolor;
|
||||
|
||||
void readcolor(const string& cfname) {
|
||||
@ -1081,14 +1054,6 @@ int readArgs() {
|
||||
spiral::place(N, mul);
|
||||
}
|
||||
|
||||
else if(argis("-net")) {
|
||||
PHASE(3);
|
||||
init(); kind = kFullNet;
|
||||
linepatterns::patTriTree.color = 0x30;
|
||||
linepatterns::patTriOther.color = 0x10;
|
||||
linepatterns::patTriRings.color = 0xFF;
|
||||
}
|
||||
|
||||
else if(argis("-spiraledge")) {
|
||||
PHASE(3);
|
||||
ld shft = 1;
|
||||
@ -1449,7 +1414,6 @@ named_functionality o_key() {
|
||||
}
|
||||
|
||||
auto hooks =
|
||||
addHook(hooks_frame, 0, drawExtra) +
|
||||
#if CAP_COMMANDLINE
|
||||
addHook(hooks_args, 100, readArgs) +
|
||||
#endif
|
||||
@ -1513,3 +1477,4 @@ auto hooks =
|
||||
#include "sag.cpp"
|
||||
#include "collatz.cpp"
|
||||
#include "tree.cpp"
|
||||
#include "fullnet.cpp"
|
||||
|
Loading…
Reference in New Issue
Block a user