summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/adaptagrams/libcola/cc_clustercontainmentconstraints.cpp
blob: 390f5e1dee6758eaa6625eb4fae7606093fb4575 (plain)
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
 * vim: ts=4 sw=4 et tw=0 wm=0
 *
 * libcola - A library providing force-directed network layout using the 
 *           stress-majorization method subject to separation constraints.
 *
 * Copyright (C) 2010  Monash University
 *
 * This library 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 2.1 of the License, or (at your option) any later version.
 * See the file LICENSE.LGPL distributed with the library.
 *
 * This library 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.
 *
 * Author(s):  Michael Wybrow
 *
*/

#include <sstream>

#include "libcola/cola.h"
#include "libcola/compound_constraints.h"
#include "libcola/cc_clustercontainmentconstraints.h"

using vpsc::XDIM;
using vpsc::YDIM;


namespace cola {

static const int AboveBoundary = 1;
static const int BelowBoundary = -1;

class ClusterShapeOffsets : public SubConstraintInfo
{
    public:
        ClusterShapeOffsets(unsigned ind, vpsc::Dim dim, double offset, int boundarySide,
                unsigned int boundaryVar) :
            SubConstraintInfo(ind),
            offset(offset),
            dim(dim),
            boundarySide(boundarySide),
            boundaryVar(boundaryVar)
        {
        }
        double offset;    // half the width or height value
        vpsc::Dim dim;    // The dimension
        int boundarySide; // The boundary side we are constraining on.
        unsigned int boundaryVar; // The boundary var.
};


ClusterContainmentConstraints::ClusterContainmentConstraints(Cluster *cluster, 
        unsigned int priority, std::vector<vpsc::Rectangle*>& boundingBoxes)
    : CompoundConstraint(vpsc::HORIZONTAL, priority)
{
    Box padding = cluster->padding();
    _combineSubConstraints = true;
    for (std::set<unsigned>::iterator curr = cluster->nodes.begin();
            curr != cluster->nodes.end(); ++curr)
    {
        unsigned id = *curr;
        double halfW = (boundingBoxes[id]->width() / 2.0);
        double halfH = (boundingBoxes[id]->height() / 2.0);
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                id, XDIM, halfW + padding.min(XDIM), AboveBoundary, 
                cluster->clusterVarId));
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                id, XDIM, halfW + padding.max(XDIM), BelowBoundary,
                cluster->clusterVarId + 1));
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                id, YDIM, halfH + padding.min(YDIM), AboveBoundary,
                cluster->clusterVarId));
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                id, YDIM, halfH + padding.max(YDIM), BelowBoundary,
                cluster->clusterVarId + 1));
    }
    for (std::vector<Cluster *>::iterator curr = cluster->clusters.begin();
            curr != cluster->clusters.end(); ++curr)
    {
        Cluster *childCluster = *curr;
        Box margin = childCluster->margin();
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                childCluster->clusterVarId, XDIM, 
                padding.min(XDIM) + margin.min(XDIM), AboveBoundary, 
                cluster->clusterVarId));
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                childCluster->clusterVarId + 1, XDIM,
                padding.max(XDIM) + margin.max(XDIM), BelowBoundary,
                cluster->clusterVarId + 1));
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                childCluster->clusterVarId, YDIM,
                padding.min(YDIM) + margin.min(YDIM), AboveBoundary,
                cluster->clusterVarId));
        _subConstraintInfo.push_back(new ClusterShapeOffsets(
                childCluster->clusterVarId + 1, YDIM,
                padding.max(YDIM) + margin.max(YDIM), BelowBoundary,
                cluster->clusterVarId + 1));
    }
}


std::string ClusterContainmentConstraints::toString(void) const
{
    std::ostringstream stream;
    stream << "ClusterContainmentConstraints()";
    return stream.str();
}


void ClusterContainmentConstraints::generateVariables(const vpsc::Dim dim,
        vpsc::Variables& vars) 
{
    COLA_UNUSED(dim);
    COLA_UNUSED(vars);
}



SubConstraintAlternatives 
ClusterContainmentConstraints::getCurrSubConstraintAlternatives(vpsc::Variables vs[])
{
    SubConstraintAlternatives alternatives;

    ClusterShapeOffsets *info = static_cast<ClusterShapeOffsets *>
            (_subConstraintInfo[_currSubConstraintIndex]);
    
    assertValidVariableIndex(vs[_primaryDim], info->varIndex);
    if (info->boundarySide == BelowBoundary)
    {
        // Constrain the objects with negative offsets to be 
        // to the left of the boundary.
        vpsc::Constraint constraint = vpsc::Constraint( 
                vs[info->dim][info->varIndex], vs[info->dim][info->boundaryVar], 
                info->offset);
        alternatives.push_back(SubConstraint(info->dim, constraint));
    }
    else
    {
        // Constrain the objects with positive offsets to be 
        // to the right of the boundary.
        vpsc::Constraint constraint = vpsc::Constraint(
                vs[info->dim][info->boundaryVar], vs[info->dim][info->varIndex], 
                info->offset);
        alternatives.push_back(SubConstraint(info->dim, constraint));
    }

    //fprintf(stderr, "===== BOUNDARYLINE ALTERNATIVES -======\n");
    return alternatives;
}


void ClusterContainmentConstraints::generateSeparationConstraints(
        const vpsc::Dim dim, vpsc::Variables& vs, vpsc::Constraints& cs,
        std::vector<vpsc::Rectangle*>& bbs) 
{
    COLA_UNUSED(bbs);
    for (SubConstraintInfoList::iterator o = _subConstraintInfo.begin();
            o != _subConstraintInfo.end(); ++o) 
    {
        ClusterShapeOffsets *info = static_cast<ClusterShapeOffsets *> (*o);

        if (info->dim != dim)
        {
            continue;
        }

        vpsc::Constraint *constraint = nullptr;
        if (info->boundarySide == BelowBoundary)
        {
            // Constrain the objects with negative offsets to be 
            // to the left of the boundary.
            constraint = new vpsc::Constraint(vs[info->varIndex],
                    vs[info->boundaryVar], info->offset);
        }
        else
        {
            // Constrain the objects with positive offsets to be 
            // to the right of the boundary.
            constraint = new vpsc::Constraint(vs[info->boundaryVar],
                    vs[info->varIndex], info->offset);
        }
        constraint->creator = this;
        cs.push_back(constraint);
    }
}


} // namespace cola