1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
/**
*
* This file is part of Tulip (https://tulip.labri.fr)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
*/
#include <iostream>
#include <iomanip>
#include <tulip/TulipPluginHeaders.h>
using namespace std;
using namespace tlp;
void printFloat(ostream &os, const string &name, float f) {
/*float a=floor(f);
float b=(f-a)*1000;
if (b<0) b*=-1;*/
os << name << f << endl;
}
void printCoord(ostream &os, const Coord &v) {
printFloat(os, "x ", v.getX());
printFloat(os, "y ", v.getY());
printFloat(os, "z ", v.getZ());
}
void printPoint(ostream &os, const Coord &v) {
os << "point [" << endl;
printCoord(os, v);
os << "]" << endl;
}
void printSize(ostream &os, const Size &v) {
printFloat(os, "h ", v.getW());
printFloat(os, "w ", v.getH());
printFloat(os, "d ", v.getD());
}
/**
* This plugin records a Tulip graph structure using the GML File format.
* This format is the file format used by Graphlet.
* See www.infosun.fim.uni-passau.de/Graphlet/GML/ for details.
*/
class GMLExport : public tlp::ExportModule {
public:
PLUGININFORMATION(
"GML Export", "Auber David", "31/07/2001",
"<p>Supported extensions: gml</p><p>Exports a Tulip graph in a file using the "
"GML format (used by Graphlet).<br/>See:<br/>"
"<a href=\"https://github.com/GunterMueller/UNI_PASSAU_FMI_Graph_Drawing\">https://github.com/GunterMueller/UNI_PASSAU_FMI_Graph_Drawing</a><br/>"
"(formerly www.infosun.fim.uni-passau.de/Graphlet/GML/) for details.</p>",
"1.0", "File")
GMLExport(tlp::PluginContext *context) : tlp::ExportModule(context, {"gml"}) {}
~GMLExport() override {}
string convert(const string &tmp) {
string newStr;
for (unsigned int i = 0; i < tmp.length(); i++) {
if (tmp[i] == '\"')
newStr += "\\\"";
else
newStr += tmp[i];
}
return newStr;
}
bool exportGraph(ostream &os) override {
os << "graph [" << endl;
os << "directed 1" << endl;
os << "version 2" << endl;
LayoutProperty *layout = graph->getProperty<LayoutProperty>("viewLayout");
StringProperty *label = graph->getProperty<StringProperty>("viewLabel");
// IntegerProperty *shape
// =getProperty<IntegerProperty>(graph->getPropertyManager(),"viewShape");
ColorProperty *colors = graph->getProperty<ColorProperty>("viewColor");
SizeProperty *sizes = graph->getProperty<SizeProperty>("viewSize");
// Save Nodes
for (auto n : graph->nodes()) {
os << "node [" << endl;
os << "id " << n.id << endl;
os << "label \"" << convert(label->getNodeValue(n)) << "\"" << endl;
os << "graphics [" << endl;
printCoord(os, layout->getNodeValue(n));
printSize(os, sizes->getNodeValue(n));
os << "type \"rectangle\"" << endl;
os << "width 0.12" << endl;
os << "fill \"#" << hex << setfill('0') << setw(2) << int(colors->getNodeValue(n).getR())
<< hex << setfill('0') << setw(2) << int(colors->getNodeValue(n).getG()) << hex
<< setfill('0') << setw(2) << int(colors->getNodeValue(n).getB()) << "\"" << endl;
// os << "outline \"#"<< hex << setfill('0') << setw(2)
// <<(int)colors->getNodeValue(n).getR()
// << hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(n).getG()
// << hex << setfill('0') << setw(2) <<(int)colors->getNodeValue(n).getB() <<
// "\""<< endl;
os << "outline \"#000000\"" << endl;
os << dec << setfill(' ') << setw(6) << "]" << endl;
os << ']' << endl;
}
// Save edges
for (auto e : graph->edges()) {
auto ends = graph->ends(e);
os << "edge [" << endl;
os << "source " << ends.first.id << endl;
os << "target " << ends.second.id << endl;
os << "id " << e.id << endl;
os << "label \"" << label->getEdgeValue(e) << "\"" << endl;
os << "graphics [" << endl;
os << "type \"line\"" << endl;
os << "arrow \"last\"" << endl;
os << "width 0.1" << endl;
os << "Line [" << endl;
vector<Coord> lcoord;
vector<Coord>::const_iterator it;
lcoord = layout->getEdgeValue(e);
if (!lcoord.empty()) {
printPoint(os, layout->getNodeValue(ends.first));
}
for (it = lcoord.begin(); it != lcoord.end(); ++it) {
printPoint(os, *it);
}
if (!lcoord.empty()) {
printPoint(os, layout->getNodeValue(ends.second));
}
os << "]" << endl;
os << "]" << endl;
os << "]" << endl;
}
os << "]" << endl;
return true;
}
};
PLUGIN(GMLExport)
|