2017-09-28 23:43:54 +00:00
|
|
|
/*
|
2019-08-18 11:21:00 +00:00
|
|
|
Copyright 2017 Wolfgang Thaller.
|
2017-09-28 23:43:54 +00:00
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
This file is part of Retro68.
|
2017-09-28 23:43:54 +00:00
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
Retro68 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.
|
2017-09-28 23:43:54 +00:00
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
Retro68 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.
|
2017-09-28 23:43:54 +00:00
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Retro68. If not, see <http://www.gnu.org/licenses/>.
|
2017-09-28 23:43:54 +00:00
|
|
|
*/
|
|
|
|
|
2017-09-26 22:30:06 +00:00
|
|
|
#ifndef SEGMENTMAP_H
|
|
|
|
#define SEGMENTMAP_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class SegmentInfo
|
|
|
|
{
|
|
|
|
public:
|
2019-08-18 11:21:00 +00:00
|
|
|
int id;
|
|
|
|
std::string name;
|
|
|
|
std::vector<std::string> filters;
|
|
|
|
SegmentInfo();
|
|
|
|
|
|
|
|
template<typename... Args>
|
|
|
|
SegmentInfo(int id, std::string name, Args... args)
|
|
|
|
: id(id), name(name), filters { args... }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteFilters(std::ostream& out, std::string section);
|
|
|
|
void WriteFiltersKeep(std::ostream& out, std::string section);
|
|
|
|
void CreateLdScript(std::ostream& out, std::string entryPoint);
|
2017-09-26 22:30:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SegmentMap
|
|
|
|
{
|
2019-08-18 11:21:00 +00:00
|
|
|
std::vector<SegmentInfo> segments;
|
2017-09-26 22:30:06 +00:00
|
|
|
public:
|
2019-08-18 11:21:00 +00:00
|
|
|
SegmentMap();
|
|
|
|
SegmentMap(std::string filename);
|
2017-09-26 22:30:06 +00:00
|
|
|
|
2019-08-18 11:21:00 +00:00
|
|
|
void CreateLdScript(std::ostream& out, std::string entryPoint, bool stripMacsbug);
|
|
|
|
std::string GetSegmentName(int id);
|
2017-09-26 22:30:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SEGMENTMAP_H
|