mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-03 17:27:03 +00:00
moveh:: line numbers for easier debugging
This commit is contained in:
parent
6c19c6eadf
commit
2d75a7d6be
15
makeh.cpp
15
makeh.cpp
@ -30,12 +30,16 @@ int in_hdr;
|
||||
|
||||
set<string> seen;
|
||||
|
||||
void gen(string s) {
|
||||
if(seen.count(s)) return;
|
||||
seen.insert(s);
|
||||
which_file = s;
|
||||
ifstream in(s);
|
||||
int lineid;
|
||||
|
||||
void gen(string sf) {
|
||||
if(seen.count(sf)) return;
|
||||
seen.insert(sf);
|
||||
which_file = sf; lineid = -1;
|
||||
ifstream in(sf);
|
||||
string s;
|
||||
while(getline(in, s)) {
|
||||
lineid++;
|
||||
while(s != "" && s[0] == ' ') s = s.substr(1);
|
||||
while(s.back() == 10 || s.back() == 13) s = s.substr(0, s.size() - 1);
|
||||
if(in_hdr) {
|
||||
@ -49,6 +53,7 @@ void gen(string s) {
|
||||
}
|
||||
if(s == "#if HDR") {
|
||||
mark_file();
|
||||
cout << "#line " << lineid << " \"" << sf << "\"\n";
|
||||
in_hdr = true;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user