-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedgemap.cpp
69 lines (59 loc) · 1.35 KB
/
edgemap.cpp
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
#include "edgemap.h"
#include "node.h"
#include <QDebug>
EdgeMap::EdgeMap()
{
}
EdgeMap::EdgeMap(Node nodes, QList<QString> ch, QList<QString> bases, int nn)
{
this->n = nodes;
this->nnodes = nn;
this->channels = ch;
this->bases = bases;
}
void EdgeMap::createList()
{
CreateBaseMap();
CreateEdgeList();
}
QList<QLine> EdgeMap::returnList()
{
CreateBaseMap();
CreateEdgeList();
return edgeList;
}
void EdgeMap::CreateEdgeList()
{
QString base1;
QString base2;
QPoint pos1;
QPoint pos2;
int i, spacePos, temp;
int channelCount = this->channels.length();
for (i = 0; i < channelCount; i++)
{
spacePos = this->channels[i].indexOf(' ');
base1=this->channels[i].left(spacePos);
temp = this->channels[i].length() - spacePos -1;
base2=this->channels[i].right(temp);
qDebug() << "Test of Base Index";
qDebug() << baseMap[base1];
qDebug() << baseMap[base2];
pos1 = n.nodemap[baseMap[base1]];
pos2 = n.nodemap[baseMap[base2]];
QLine e;
e.setP1(pos1);
e.setP2(pos2);
edgeList.push_back(e);
//--- test printing----
qDebug()<<"Base1:"<<base1<<"Base2:"<<base2;
}
}
void EdgeMap::CreateBaseMap()
{
int i;
for (i = 0; i < nnodes; i++ )
{
this->baseMap[this->bases[i]] = i;
}
}