1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-02 04:48:06 +00:00

ru:: NPCs

This commit is contained in:
Zeno Rogue
2025-04-27 01:23:59 +02:00
parent 0797e540d6
commit d93f0b0430
2 changed files with 15 additions and 3 deletions

View File

@@ -118,6 +118,15 @@ void load_room(fhstream& f, cell *c) {
b->pickup_message = scanline_noblank(f);
r.entities.emplace_back(std::move(b));
}
else if(cap == "NPC") {
auto b = std::make_unique<npc>();
sscanf(param.c_str(), "%lf%lf%08x", &b->where_x, &b->where_y, &b->col);
s = scanline_noblank(f);
b->sglyph = s[0];
b->name = s.substr(1);
b->text = scanline_noblank(f);
r.entities.emplace_back(std::move(b));
}
else println(hlog, "unknown mapline ", s);
}
else println(hlog, "unknown mapline ", s);