libSBNW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
arrowhead.h
Go to the documentation of this file.
1 /*== SAGITTARIUS =====================================================================
2  * Copyright (c) 2014, Jesse K Medley
3  * All rights reserved.
4 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of The University of Washington nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 //== FILEDOC =========================================================================
29 
38 //== BEGINNING OF CODE ===============================================================
39 
40 #ifndef __SBNW_LAYOUT_ARROWHEAD_H_
41 #define __SBNW_LAYOUT_ARROWHEAD_H_
42 
43 //== INCLUDES ========================================================================
44 
46 #include "graphfab/layout/point.h"
48 
49 //-- C++ code --
50 #ifdef __cplusplus
51 
52 #include <string>
53 
54 #include <iostream>
55 
56 namespace Graphfab {
57 
58  typedef int ArrowheadStyle;
59 
61  class Arrowhead {
62  public:
63  virtual ~Arrowhead() {}
64 
65  virtual unsigned long getNumVerts() const = 0;
66  virtual Point getVert(unsigned long n) const = 0;
67 
68  Point getTransformedVert(unsigned long n) const {
69  return tf_*getVert(n);
70  }
71 
72  Affine2d getTransform() const { return tf_; }
73 
74  void setTransform(const Affine2d& tf, bool recurse = true) { tf_ = tf; }
75 
76  Affine2d getInverseTransform() const { return itf_; }
77 
78  void setInverseTransform(const Affine2d& itf, bool recurse = true) { itf_ = itf; }
79 
80  protected:
82  Affine2d tf_;
84  Affine2d itf_;
85 
86  };
87 
88  class PlainArrowhead : public Arrowhead {
89  public:
90  virtual unsigned long getNumVerts() const {
91  return 3;
92  }
93 
94  virtual Point getVert(unsigned long n) const {
95  switch (n) {
96  case 0:
97  return Point(0, 1);
98  case 1:
99  return Point(1, 0);
100  case 2:
101  return Point(-1, 0);
102  default:
103  SBNW_THROW(InvalidParameterException, "Index out of range", "Arrowhead::getVert");
104  }
105  }
106 
107  };
108 
109  class SubstrateArrowhead : public Arrowhead {
110  public:
111  virtual unsigned long getNumVerts() const;
112 
113  virtual Point getVert(unsigned long n) const;
114  };
115 
116  class ProductArrowhead : public Arrowhead {
117  public:
118  virtual unsigned long getNumVerts() const;
119 
120  virtual Point getVert(unsigned long n) const;
121  };
122 
123  class ActivatorArrowhead : public Arrowhead {
124  public:
125  virtual unsigned long getNumVerts() const;
126 
127  virtual Point getVert(unsigned long n) const;
128  };
129 
130  class InhibitorArrowhead : public Arrowhead {
131  public:
132  virtual unsigned long getNumVerts() const;
133 
134  virtual Point getVert(unsigned long n) const;
135  };
136 
137  class ModifierArrowhead : public Arrowhead {
138  public:
139  virtual unsigned long getNumVerts() const;
140 
141  virtual Point getVert(unsigned long n) const;
142  };
143 
144  class ArrowheadStyles {
145  public:
146  static unsigned long count();
147 
148  static bool isFilled(ArrowheadStyle style);
149 
150  static unsigned long getNumVerts(ArrowheadStyle style);
151 
152  static Point getVert(ArrowheadStyle style, int n);
153 
154  };
155 
156  extern ArrowheadStyle sub_arrow_style_;
157  inline ArrowheadStyle ArrowheadStyleLookup(const SubstrateArrowhead* ) {
158  return sub_arrow_style_;
159  }
160 
161  extern ArrowheadStyle prod_arrow_style_;
162  inline ArrowheadStyle ArrowheadStyleLookup(const ProductArrowhead* ) {
163  return prod_arrow_style_;
164  }
165 
166  extern ArrowheadStyle act_arrow_style_;
167  inline ArrowheadStyle ArrowheadStyleLookup(const ActivatorArrowhead* ) {
168  return act_arrow_style_;
169  }
170 //
171  extern ArrowheadStyle inh_arrow_style_;
172  inline ArrowheadStyle ArrowheadStyleLookup(const InhibitorArrowhead* ) {
173  return inh_arrow_style_;
174  }
175 //
176  extern ArrowheadStyle mod_arrow_style_;
177  inline ArrowheadStyle ArrowheadStyleLookup(const ModifierArrowhead* ) {
178  return mod_arrow_style_;
179  }
180 
181  // set arrowhead style based on type
182  template<typename ArrowheadT>
183  class ArrowheadStyleControl {
184  public:
185  };
186 
187  template<>
188  class ArrowheadStyleControl<SubstrateArrowhead> {
189  public:
190  static void set(ArrowheadStyle val) {
191 // std::cerr << "graphfab: set style for substrate arrowhead\n";
192  sub_arrow_style_ = val;
193  }
194 
195  static ArrowheadStyle get() {
196  return sub_arrow_style_;
197  }
198  };
199 
200  template<>
201  class ArrowheadStyleControl<ProductArrowhead> {
202  public:
203  static void set(ArrowheadStyle val) {
204 // std::cerr << "graphfab: set style for product arrowhead\n";
205  prod_arrow_style_ = val;
206  }
207 
208  static ArrowheadStyle get() {
209  return prod_arrow_style_;
210  }
211  };
212 
213  template<>
214  class ArrowheadStyleControl<ActivatorArrowhead> {
215  public:
216  static void set(ArrowheadStyle val) {
217 // std::cerr << "graphfab: set style for activator arrowhead\n";
218  act_arrow_style_ = val;
219  }
220 
221  static ArrowheadStyle get() {
222  return act_arrow_style_;
223  }
224  };
225 
226  template<>
227  class ArrowheadStyleControl<InhibitorArrowhead> {
228  public:
229  static void set(ArrowheadStyle val) {
230 // std::cerr << "graphfab: set style for inhibitor arrowhead\n";
231  inh_arrow_style_ = val;
232  }
233 
234  static ArrowheadStyle get() {
235  return inh_arrow_style_;
236  }
237  };
238 
239  template<>
240  class ArrowheadStyleControl<ModifierArrowhead> {
241  public:
242  static void set(ArrowheadStyle val) {
243 // std::cerr << "graphfab: set style for modifier arrowhead\n";
244  mod_arrow_style_ = val;
245  }
246 
247  static ArrowheadStyle get() {
248  return mod_arrow_style_;
249  }
250  };
251 
252 }
253 
254 #endif
255 
256 #endif
Definition: SagittariusCommon.cpp:38
First file included.
Roots of cubic equations.