73 lines
1.8 KiB
C++
73 lines
1.8 KiB
C++
#include "Core.h"
|
|
#include <Console.h>
|
|
#include <Export.h>
|
|
#include <PluginManager.h>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <modules/Notes.h>
|
|
|
|
using std::vector;
|
|
using std::string;
|
|
using namespace DFHack;
|
|
|
|
command_result df_notes (color_ostream &out, vector <string> & parameters);
|
|
|
|
DFHACK_PLUGIN("notes");
|
|
|
|
DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands)
|
|
{
|
|
commands.push_back(PluginCommand("dumpnotes",
|
|
"Dumps in-game notes",
|
|
df_notes));
|
|
return CR_OK;
|
|
}
|
|
|
|
DFhackCExport command_result plugin_shutdown ( color_ostream &out )
|
|
{
|
|
return CR_OK;
|
|
}
|
|
|
|
command_result df_notes (color_ostream &con, vector <string> & parameters)
|
|
{
|
|
CoreSuspender suspend;
|
|
|
|
DFHack::Notes * note_mod = Core::getInstance().getNotes();
|
|
std::vector<t_note*>* note_list = note_mod->notes;
|
|
|
|
if (note_list == NULL)
|
|
{
|
|
con.printerr("Notes are not supported under this version of DF.\n");
|
|
return CR_OK;
|
|
}
|
|
|
|
if (note_list->empty())
|
|
{
|
|
con << "There are no notes." << std::endl;
|
|
return CR_OK;
|
|
}
|
|
|
|
|
|
for (size_t i = 0; i < note_list->size(); i++)
|
|
{
|
|
t_note* note = (*note_list)[i];
|
|
|
|
con.print("Note %x at: %d/%d/%d\n",note, note->x, note->y, note->z);
|
|
con.print("Note id: %d\n", note->id);
|
|
con.print("Note symbol: '%c'\n", note->symbol);
|
|
|
|
if (note->name.length() > 0)
|
|
con << "Note name: " << (note->name) << std::endl;
|
|
if (note->text.length() > 0)
|
|
con << "Note text: " << (note->text) << std::endl;
|
|
|
|
if (note->unk1 != 0)
|
|
con.print("unk1: %x\n", note->unk1);
|
|
if (note->unk2 != 0)
|
|
con.print("unk2: %x\n", note->unk2);
|
|
|
|
con << std::endl;
|
|
}
|
|
|
|
return CR_OK;
|
|
}
|