forked from pcb2gcode/pcb2gcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
board.hpp
115 lines (98 loc) · 3.45 KB
/
board.hpp
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
/*
* This file is part of pcb2gcode.
*
* Copyright (C) 2009, 2010 Patrick Birnzain <pbirnzain@users.sourceforge.net>
* Copyright (C) 2015 Nicola Corna <nicola@corna.info>
*
* pcb2gcode is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* pcb2gcode 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.
*
* You should have received a copy of the GNU General Public License
* along with pcb2gcode. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef BOARD_H
#define BOARD_H
#include <stdint.h>
#include <stdexcept>
#include <sstream>
#include <iostream>
using std::cout;
using std::endl;
#include <map>
using std::map;
#include <vector>
using std::vector;
using std::pair;
#include <memory>
using std::shared_ptr;
using std::dynamic_pointer_cast;
using std::static_pointer_cast;
#include <tuple>
using std::tuple;
using std::make_tuple;
using std::get;
#include "geometry.hpp"
#include "surface.hpp"
#include "surface_vectorial.hpp"
#include "layer.hpp"
#include "mill.hpp"
/******************************************************************************/
/*
Represents a printed circuit board.
This class calculates the required minimum board size
and applies the (not yet) described operations on the
photoplots of each layer to calculate the toolpaths.
*/
/******************************************************************************/
class Board
{
public:
Board(int dpi, bool fill_outline, double outline_width, string outputdir, bool vectorial, bool tsp_2opt);
void prepareLayer(string layername, shared_ptr<LayerImporter> importer,
shared_ptr<RoutingMill> manufacturer, bool backside);
void set_margins(double margins) { margin = margins; }
ivalue_t get_width();
ivalue_t get_height();
ivalue_t get_min_x() { return min_x; }
ivalue_t get_max_x() { return max_x; }
ivalue_t get_min_y() { return min_y; }
ivalue_t get_max_y() { return max_y; }
double get_layersnum() { return layers.size(); }
vector<string> list_layers();
shared_ptr<Layer> get_layer(string layername);
vector<shared_ptr<icoords> > get_toolpath(string layername);
void createLayers(); // should be private
unsigned int get_dpi();
private:
ivalue_t margin;
const unsigned int dpi;
const bool fill_outline;
const double outline_width;
const string outputdir;
const bool vectorial;
const bool tsp_2opt;
ivalue_t min_x;
ivalue_t max_x;
ivalue_t min_y;
ivalue_t max_y;
/* The Layer gets constructed from data prepared in
* prepareLayer after the size calculations are done in createLayers.
* (It can't be constructed in prepareLayer as the surface which gets
* passed to the Layer at construction time needs the sizes to be
* created.)
* In the meantime, the construction arguments get carried around in
* prep_t tuples, whose signature must basically match the construction
* signature of Layer.
*/
typedef tuple<shared_ptr<LayerImporter>, shared_ptr<RoutingMill>, bool> prep_t;
map<string, prep_t> prepared_layers;
map<string, shared_ptr<Layer> > layers;
};
#endif // BOARD_H