2011-10-29 19:52:25 -06:00
|
|
|
/*
|
|
|
|
https://github.com/peterix/dfhack
|
2012-09-29 20:03:37 -06:00
|
|
|
Copyright (c) 2009-2012 Petr Mrázek (peterix@gmail.com)
|
2011-10-29 19:52:25 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any
|
|
|
|
damages arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any
|
|
|
|
purpose, including commercial applications, and to alter it and
|
|
|
|
redistribute it freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must
|
|
|
|
not claim that you wrote the original software. If you use this
|
|
|
|
software in a product, an acknowledgment in the product documentation
|
|
|
|
would be appreciated but is not required.
|
|
|
|
|
|
|
|
2. Altered source versions must be plainly marked as such, and
|
|
|
|
must not be misrepresented as being the original software.
|
|
|
|
|
|
|
|
3. This notice may not be removed or altered from any source
|
|
|
|
distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
/*
|
|
|
|
* kitchen settings
|
|
|
|
*/
|
2011-12-31 04:48:42 -07:00
|
|
|
#include "Export.h"
|
2018-05-17 17:34:03 -06:00
|
|
|
#include "df/kitchen_exc_type.h"
|
2012-01-16 20:22:42 -07:00
|
|
|
|
2011-10-29 19:52:25 -06:00
|
|
|
/**
|
|
|
|
* \defgroup grp_kitchen Kitchen settings
|
|
|
|
* @ingroup grp_modules
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace DFHack
|
|
|
|
{
|
|
|
|
namespace Kitchen
|
|
|
|
{
|
|
|
|
/**
|
2012-01-16 20:22:42 -07:00
|
|
|
* Kitchen exclusions manipulator. Currently geared towards plants and seeds.
|
|
|
|
* \ingroup grp_modules
|
|
|
|
* \ingroup grp_kitchen
|
2011-10-29 19:52:25 -06:00
|
|
|
*/
|
|
|
|
|
2023-02-01 05:28:07 -07:00
|
|
|
// print the exclusion list, with the material index also translated into its token (for organics) - for debug really
|
|
|
|
DFHACK_EXPORT void debug_print(color_ostream &out);
|
|
|
|
|
2020-06-29 19:35:07 -06:00
|
|
|
// remove this plant from the exclusion list if it is in it
|
|
|
|
DFHACK_EXPORT void allowPlantSeedCookery(int32_t plant_id);
|
2011-10-29 19:52:25 -06:00
|
|
|
|
2020-06-29 19:35:07 -06:00
|
|
|
// add this plant to the exclusion list, if it is not already in it
|
|
|
|
DFHACK_EXPORT void denyPlantSeedCookery(int32_t plant_id);
|
2011-10-29 19:52:25 -06:00
|
|
|
|
2023-02-03 00:33:24 -07:00
|
|
|
DFHACK_EXPORT bool isPlantCookeryAllowed(int32_t plant_id);
|
|
|
|
DFHACK_EXPORT bool isSeedCookeryAllowed(int32_t plant_id);
|
|
|
|
|
2023-02-01 05:28:07 -07:00
|
|
|
DFHACK_EXPORT std::size_t size();
|
|
|
|
|
2023-01-05 18:11:01 -07:00
|
|
|
// Finds the index of a kitchen exclusion in plotinfo.kitchen.exc_types. Returns -1 if not found.
|
2018-05-17 17:34:03 -06:00
|
|
|
DFHACK_EXPORT int findExclusion(df::kitchen_exc_type type,
|
|
|
|
df::item_type item_type, int16_t item_subtype,
|
|
|
|
int16_t mat_type, int32_t mat_index);
|
|
|
|
|
|
|
|
// Adds an exclusion. Returns false if already excluded.
|
|
|
|
DFHACK_EXPORT bool addExclusion(df::kitchen_exc_type type,
|
|
|
|
df::item_type item_type, int16_t item_subtype,
|
|
|
|
int16_t mat_type, int32_t mat_index);
|
|
|
|
|
|
|
|
// Removes an exclusion. Returns false if not excluded.
|
|
|
|
DFHACK_EXPORT bool removeExclusion(df::kitchen_exc_type type,
|
|
|
|
df::item_type item_type, int16_t item_subtype,
|
|
|
|
int16_t mat_type, int32_t mat_index);
|
|
|
|
|
2012-01-16 20:22:42 -07:00
|
|
|
}
|
2011-10-29 19:52:25 -06:00
|
|
|
}
|