]> git.tdb.fi Git - r2c2.git/blob - source/3d/tracktype.cpp
Reimplement path display
[r2c2.git] / source / 3d / tracktype.cpp
1 /* $Id$
2
3 This file is part of the MSP Märklin suite
4 Copyright © 2010 Mikkosoft Productions, Mikko Rasa
5 Distributed under the GPL
6 */
7
8 #include <algorithm>
9 #include <cmath>
10 #include <msp/gl/meshbuilder.h>
11 #include "catalogue.h"
12 #include "tracktype.h"
13
14 using namespace std;
15 using namespace Msp;
16
17 namespace {
18
19 bool compare_z(const Marklin::Point &p1, const Marklin::Point &p2)
20 {
21         return p1.z<p2.z;
22 }
23
24 template<typename Iter>
25 Iter graham_scan(Iter begin, Iter end)
26 {
27         // http://en.wikipedia.org/wiki/Graham_scan
28
29         // Find point with lowest X coordinate
30         Marklin::Point lowest = *begin;
31         for(Iter i=begin; i!=end; ++i)
32                 if(i->x<lowest.x || (i->x==lowest.x && i->y>lowest.y))
33                         lowest = *i;
34
35         // Compute tangents and sort points
36         for(Iter i=begin; i!=end; ++i)
37                 i->z = (i->x==lowest.x ? 1e5/(i->y-lowest.y-1) : (i->y-lowest.y)/(i->x-lowest.x));
38         sort(begin, end, compare_z);
39
40         for(Iter k=begin, i=k++, j=k++;; )
41         {
42                 // Compute winding by cross product
43                 float turn = (j->x-i->x)*(k->y-j->y) - (k->x-j->x)*(j->y-i->y);
44
45                 if(turn<1e-5)
46                 {
47                         // Right turn - throw the middle point away
48                         // Special case for collinear vertices in the beginning
49                         if(i==begin)
50                                 j = k++;
51                         else
52                                 j = i--;
53                 }
54                 else
55                 {
56                         // Left turn - store the middle point and advance
57                         if(++i!=j)
58                                 *i = *j;
59                         j = k++;
60                 }
61
62                 // Cycle back to beginning and terminate after checking the last point
63                 if(k==end)
64                         k = begin;
65                 else if(j==begin)
66                         return ++i;
67         }
68 }
69
70 }
71
72 namespace Marklin {
73
74 TrackType3D::TrackType3D(const Catalogue3D &cat3d, const TrackType &tt):
75         catalogue(cat3d),
76         ballast_mesh((GL::NORMAL3, GL::COLOR4_UBYTE, GL::VERTEX3)),
77         rail_mesh((GL::NORMAL3, GL::COLOR4_UBYTE, GL::VERTEX3))
78 {
79         const Catalogue &cat = cat3d.get_catalogue();
80         const vector<TrackPart> &parts = tt.get_parts();
81
82         const Profile &ballast_profile = cat.get_ballast_profile();
83         const Point &ballast_min = ballast_profile.get_min_coords();
84         const Point &ballast_max = ballast_profile.get_max_coords();
85         float ballast_h = ballast_max.y-ballast_min.y;
86
87         const Profile &rail_profile = cat.get_rail_profile();
88         const Point &rail_min = rail_profile.get_min_coords();
89         const Point &rail_max = rail_profile.get_max_coords();
90         float rail_h = rail_max.y-rail_min.y;
91
92         float gauge = cat.get_gauge();
93
94         {
95                 unsigned index = 0;
96                 GL::MeshBuilder bld(ballast_mesh);
97                 bld.color(0.25f, 0.25f, 0.25f);
98                 for(vector<TrackPart>::const_iterator i=parts.begin(); i!=parts.end(); ++i)
99                         build_part(*i, ballast_profile, Point(0, -ballast_min.y), bld, index);
100         }
101
102         {
103                 unsigned index = 0;
104                 GL::MeshBuilder bld(rail_mesh);
105                 bld.color(0.85f, 0.85f, 0.85f);
106                 float y = ballast_h-rail_min.y;
107                 for(vector<TrackPart>::const_iterator i=parts.begin(); i!=parts.end(); ++i)
108                         build_part(*i, rail_profile, Point(-gauge/2-rail_max.x, y), bld, index);
109                 for(vector<TrackPart>::const_iterator i=parts.begin(); i!=parts.end(); ++i)
110                         build_part(*i, rail_profile, Point(gauge/2-rail_min.x, y), bld, index);
111         }
112  
113         unsigned paths = tt.get_paths();
114         for(unsigned i=0; paths; ++i, paths>>=1)
115         {
116                 GL::Mesh *mesh = 0;
117                 if(paths&1)
118                 {
119                         mesh = new GL::Mesh(GL::VERTEX3);
120                         GL::MeshBuilder bld(*mesh);
121                         unsigned index = 0;
122                         for(vector<TrackPart>::const_iterator j=parts.begin(); j!=parts.end(); ++j)
123                                 if(j->get_path()==i)
124                                         build_part(*j, cat.get_path_profile(), Point(0, ballast_h+1.5*rail_h), bld, index);
125                 }
126                 path_meshes.push_back(mesh);
127         }
128
129         min_z = max_z = border.front().z;
130         for(vector<Point>::iterator i=border.begin(); i!=border.end(); ++i)
131         {
132                 min_z = min(min_z, i->z);
133                 max_z = max(max_z, i->z);
134         }
135         border.erase(graham_scan(border.begin(), border.end()), border.end());
136 }
137
138 void TrackType3D::get_bounds(float angle, Point &minp, Point &maxp) const
139 {
140         float c = cos(-angle);
141         float s = sin(-angle);
142
143         minp = maxp = Point();
144         minp.z = min_z;
145         maxp.z = max_z;
146
147         for(vector<Point>::const_iterator i=border.begin(); i!=border.end(); ++i)
148         {
149                 float x = c*i->x-s*i->y;
150                 float y = s*i->x+c*i->y;
151
152                 minp.x = min(minp.x, x);
153                 minp.y = min(minp.y, y);
154                 maxp.x = max(maxp.x, x);
155                 maxp.y = max(maxp.y, y);
156         }
157 }
158
159 const GL::Mesh &TrackType3D::get_path_mesh(unsigned p) const
160 {
161         if(p>=path_meshes.size() || !path_meshes[p])
162                 throw InvalidParameterValue("Invalid path");
163         return *path_meshes[p];
164 }
165
166 void TrackType3D::render(const GL::Tag &tag) const
167 {
168         if(tag==0)
169         {
170                 catalogue.get_ballast_material().bind();
171                 ballast_mesh.draw();
172                 catalogue.get_rail_material().bind();
173                 rail_mesh.draw();
174         }
175 }
176
177 void TrackType3D::build_part(const TrackPart &part, const Profile &profile, const Point &offset, GL::MeshBuilder &bld, unsigned &base_index)
178 {
179         float plen = part.get_length();
180         unsigned nsegs = (part.is_curved() ? static_cast<unsigned>(plen*16)+1 : 1);
181
182         unsigned n_points = profile.get_n_points();
183         for(unsigned i=0; i<=nsegs; ++i)
184         {
185                 TrackPoint basep = part.get_point(i*plen/nsegs);
186                 float c = cos(basep.dir);
187                 float s = sin(basep.dir);
188
189                 Point p;
190                 for(unsigned j=0; j<n_points; ++j)
191                 {
192                         // TODO: smoothing - only duplicate vertex if the angle is large enough
193
194                         p = profile.get_point(j);
195                         p.z = basep.pos.z+p.y+offset.y;
196                         p.y = basep.pos.y-c*(p.x+offset.x);
197                         p.x = basep.pos.x+s*(p.x+offset.x);
198                         if(j>0)
199                                 bld.vertex(p.x, p.y, p.z);
200
201                         if(j+1<n_points)
202                         {
203                                 Point n = profile.get_edge_normal(j);
204                                 bld.normal(s*n.x, -c*n.x, n.y);
205                                 bld.vertex(p.x, p.y, p.z);
206                         }
207
208                         border.push_back(p);
209                 }
210         }
211
212         for(unsigned i=0; i+1<n_points; ++i)
213         {
214                 bld.begin(GL::TRIANGLE_STRIP);
215                 for(unsigned j=0; j<=nsegs; ++j)
216                 {
217                         unsigned k = (j*(n_points-1)+i)*2;
218                         bld.element(base_index+k+1);
219                         bld.element(base_index+k);
220                 }
221                 bld.end();
222         }
223
224         base_index += (nsegs+1)*(n_points-1)*2;
225 }
226
227 } // namespace Marklin