2011-10-06 19:53:58 -06:00
|
|
|
// This is a generic plugin that does nothing useful apart from acting as an example... of a plugin that does nothing :D
|
|
|
|
|
|
|
|
// some headers required for a plugin. Nothing special, just the basics.
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Core.h"
|
|
|
|
#include <Console.h>
|
|
|
|
#include <Export.h>
|
|
|
|
#include <PluginManager.h>
|
2012-01-28 05:03:56 -07:00
|
|
|
|
|
|
|
// DF data structure definition headers
|
|
|
|
#include "DataDefs.h"
|
|
|
|
//#include "df/world.h"
|
|
|
|
|
2011-10-06 19:53:58 -06:00
|
|
|
using namespace DFHack;
|
2012-01-28 05:03:56 -07:00
|
|
|
using namespace df::enums;
|
2011-10-06 19:53:58 -06:00
|
|
|
|
|
|
|
// our own, empty header.
|
|
|
|
#include "skeleton.h"
|
|
|
|
|
|
|
|
|
|
|
|
// Here go all the command declarations...
|
|
|
|
// mostly to allow having the mandatory stuff on top of the file and commands on the bottom
|
2012-03-10 04:55:42 -07:00
|
|
|
command_result skeleton (color_ostream &out, std::vector <std::string> & parameters);
|
2011-10-06 19:53:58 -06:00
|
|
|
|
2012-02-21 10:19:17 -07:00
|
|
|
// A plugin must be able to return its name and version.
|
|
|
|
// The name string provided must correspond to the filename - skeleton.plug.so or skeleton.plug.dll in this case
|
|
|
|
DFHACK_PLUGIN("skeleton");
|
2011-10-06 19:53:58 -06:00
|
|
|
|
|
|
|
// Mandatory init function. If you have some global state, create it here.
|
2012-03-10 04:55:42 -07:00
|
|
|
DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands)
|
2011-10-06 19:53:58 -06:00
|
|
|
{
|
|
|
|
// Fill the command list with your commands.
|
2012-01-28 05:03:56 -07:00
|
|
|
commands.push_back(PluginCommand(
|
|
|
|
"skeleton", "Do nothing, look pretty.",
|
|
|
|
skeleton, false, /* true means that the command can't be used from non-interactive user interface */
|
|
|
|
// Extended help string. Used by CR_WRONG_USAGE and the help command:
|
|
|
|
" This command does nothing at all.\n"
|
|
|
|
"Example:\n"
|
|
|
|
" skeleton\n"
|
|
|
|
" Does nothing.\n"
|
|
|
|
));
|
2011-10-06 19:53:58 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is called right before the plugin library is removed from memory.
|
2012-03-10 04:55:42 -07:00
|
|
|
DFhackCExport command_result plugin_shutdown ( color_ostream &out )
|
2011-10-06 19:53:58 -06:00
|
|
|
{
|
|
|
|
// You *MUST* kill all threads you created before this returns.
|
2012-02-21 10:19:17 -07:00
|
|
|
// If everything fails, just return CR_FAILURE. Your plugin will be
|
2011-10-06 19:53:58 -06:00
|
|
|
// in a zombie state, but things won't crash.
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2012-01-28 05:03:56 -07:00
|
|
|
// Called to notify the plugin about important state changes.
|
|
|
|
// Invoked with DF suspended, and always before the matching plugin_onupdate.
|
|
|
|
// More event codes may be added in the future.
|
|
|
|
/*
|
2012-03-10 04:55:42 -07:00
|
|
|
DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_change_event event)
|
2012-01-28 05:03:56 -07:00
|
|
|
{
|
|
|
|
switch (event) {
|
|
|
|
case SC_GAME_LOADED:
|
|
|
|
// initialize from the world just loaded
|
|
|
|
break;
|
|
|
|
case SC_GAME_UNLOADED:
|
|
|
|
// cleanup
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2011-10-06 19:53:58 -06:00
|
|
|
// Whatever you put here will be done in each game step. Don't abuse it.
|
|
|
|
// It's optional, so you can just comment it out like this if you don't need it.
|
|
|
|
/*
|
2012-03-10 04:55:42 -07:00
|
|
|
DFhackCExport command_result plugin_onupdate ( color_ostream &out )
|
2011-10-06 19:53:58 -06:00
|
|
|
{
|
|
|
|
// whetever. You don't need to suspend DF execution here.
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
// A command! It sits around and looks pretty. And it's nice and friendly.
|
2012-03-10 04:55:42 -07:00
|
|
|
command_result skeleton (color_ostream &out, std::vector <std::string> & parameters)
|
2011-10-06 19:53:58 -06:00
|
|
|
{
|
2012-01-28 05:03:56 -07:00
|
|
|
// It's nice to print a help message you get invalid options
|
|
|
|
// from the user instead of just acting strange.
|
|
|
|
// This can be achieved by adding the extended help string to the
|
|
|
|
// PluginCommand registration as show above, and then returning
|
|
|
|
// CR_WRONG_USAGE from the function. The same string will also
|
|
|
|
// be used by 'help your-command'.
|
|
|
|
if (!parameters.empty())
|
|
|
|
return CR_WRONG_USAGE;
|
2011-10-06 19:53:58 -06:00
|
|
|
// Commands are called from threads other than the DF one.
|
2012-01-28 05:03:56 -07:00
|
|
|
// Suspend this thread until DF has time for us. If you
|
|
|
|
// use CoreSuspender, it'll automatically resume DF when
|
|
|
|
// execution leaves the current scope.
|
2012-03-10 04:55:42 -07:00
|
|
|
CoreSuspender suspend;
|
2011-10-06 19:53:58 -06:00
|
|
|
// Actually do something here. Yay.
|
2012-03-10 04:55:42 -07:00
|
|
|
out.print("Hello! I do nothing, remember?\n");
|
2011-10-06 19:53:58 -06:00
|
|
|
// Give control back to DF.
|
|
|
|
return CR_OK;
|
|
|
|
}
|