forked from varoudis/depthmapX
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathentityparsing.h
44 lines (35 loc) · 1.61 KB
/
entityparsing.h
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
// Copyright (C) 2017 Petros Koutsolampros
// This program 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.
// This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef ENTITYPARSING_H
#define ENTITYPARSING_H
#include "genlib/p2dpoly.h"
#include "genlib/exceptions.h"
#include "isovistdef.h"
#include <vector>
#include <iostream>
#include <string>
namespace EntityParsing {
class EntityParseException : public depthmapX::BaseException
{
public:
EntityParseException(std::string message) : depthmapX::BaseException(message)
{}
};
std::vector<std::string> split(const std::string &s, char delim);
std::vector<Line> parseLines(std::istream& stream, char delimiter);
std::vector<Point2f> parsePoints(std::istream& stream, char delimiter);
Point2f parsePoint(const std::string &point, char delimiter = ',');
std::vector<IsovistDefinition> parseIsovists(std::istream &stream, char delimiter);
IsovistDefinition parseIsovist(const std::string &isovist);
std::vector<std::pair<int, int> > parseRefPairs(std::istream& stream, char delimiter);
}
#endif // ENTITYPARSING_H