2010-05-05 15:04:10 -06:00
|
|
|
/*
|
|
|
|
www.sourceforge.net/projects/dfhack
|
2010-05-25 22:48:23 -06:00
|
|
|
Copyright (c) 2009 Petr Mrázek (peterix), Kenneth Ferland (Impaler[WrG]), dorf, doomchild
|
2010-05-05 15:04:10 -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.
|
|
|
|
*/
|
|
|
|
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack-c/modules/Materials_C.h"
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int Materials_ReadInorganicMaterials(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadInorganicMaterials();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_ReadOrganicMaterials(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadOrganicMaterials();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_ReadWoodMaterials(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadWoodMaterials();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_ReadPlantMaterials(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadPlantMaterials();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_ReadCreatureTypes(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadCreatureTypes();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_ReadCreatureTypesEx(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadCreatureTypesEx();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_ReadDescriptorColors(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadDescriptorColors();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_ReadOthers(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->ReadOthers();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Materials_ReadAllMaterials(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
((DFHack::Materials*)mat)->ReadAllMaterials();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-27 08:19:23 -06:00
|
|
|
const char* Materials_getType(DFHackObject* mat, t_material* material)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
std::string type = ((DFHack::Materials*)mat)->getType(*material);
|
|
|
|
|
|
|
|
return type.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
return "\0";
|
|
|
|
}
|
|
|
|
|
2010-05-05 15:04:10 -06:00
|
|
|
const char* Materials_getDescription(DFHackObject* mat, t_material* material)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
std::string description = ((DFHack::Materials*)mat)->getDescription(*material);
|
|
|
|
|
|
|
|
return description.c_str();
|
|
|
|
}
|
|
|
|
|
|
|
|
return "\0";
|
|
|
|
}
|
|
|
|
|
|
|
|
//vector size getters
|
|
|
|
|
|
|
|
int Materials_getInorganicSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->inorganic.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_getOrganicSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->organic.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_getTreeSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->tree.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_getPlantSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->plant.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_getRaceSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->race.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_getRaceExSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->raceEx.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_getColorSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->color.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Materials_getOtherSize(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
return ((DFHack::Materials*)mat)->other.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//vector getters
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
t_matgloss* Materials_getInorganic(DFHackObject* mat)
|
2010-05-05 15:04:10 -06:00
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->inorganic.size() > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
t_matgloss* buf;
|
|
|
|
|
|
|
|
((*alloc_matgloss_buffer_callback)(buf, materials->inorganic.size()));
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->inorganic.begin(), materials->inorganic.end(), buf);
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
t_matgloss* Materials_getOrganic(DFHackObject* mat)
|
2010-05-05 15:04:10 -06:00
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->organic.size() > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
t_matgloss* buf;
|
|
|
|
|
|
|
|
((*alloc_matgloss_buffer_callback)(buf, materials->organic.size()));
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->organic.begin(), materials->organic.end(), buf);
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
t_matgloss* Materials_getTree(DFHackObject* mat)
|
2010-05-05 15:04:10 -06:00
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->tree.size() > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
t_matgloss* buf;
|
|
|
|
|
|
|
|
((*alloc_matgloss_buffer_callback)(buf, materials->tree.size()));
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->tree.begin(), materials->tree.end(), buf);
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
t_matgloss* Materials_getPlant(DFHackObject* mat)
|
2010-05-05 15:04:10 -06:00
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->plant.size() > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
t_matgloss* buf;
|
|
|
|
|
|
|
|
((*alloc_matgloss_buffer_callback)(buf, materials->plant.size()));
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->plant.begin(), materials->plant.end(), buf);
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
t_matgloss* Materials_getRace(DFHackObject* mat)
|
2010-05-05 15:04:10 -06:00
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->race.size() > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
t_matgloss* buf;
|
|
|
|
|
|
|
|
((*alloc_matgloss_buffer_callback)(buf, materials->race.size()));
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->race.begin(), materials->race.end(), buf);
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
//race_ex getter goes here...
|
2010-05-25 14:38:51 -06:00
|
|
|
c_creaturetype* Materials_getRaceEx(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
int matSize = materials->raceEx.size();
|
2010-05-13 14:42:19 -06:00
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
if(matSize > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
c_creaturetype* buf;
|
|
|
|
|
|
|
|
((*alloc_creaturetype_buffer_callback)(buf, matSize));
|
2010-05-13 14:42:19 -06:00
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < matSize; i++)
|
|
|
|
CreatureTypeConvert(&materials->raceEx[i], &buf[i]);
|
2010-05-13 14:42:19 -06:00
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-13 14:42:19 -06:00
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-05-05 15:04:10 -06:00
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
t_descriptor_color* Materials_getColor(DFHackObject* mat)
|
2010-05-05 15:04:10 -06:00
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->color.size() > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
t_descriptor_color* buf;
|
|
|
|
|
|
|
|
((*alloc_descriptor_buffer_callback)(buf, materials->color.size()));
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->color.begin(), materials->color.end(), buf);
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
t_matglossOther* Materials_getOther(DFHackObject* mat)
|
2010-05-05 15:04:10 -06:00
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->other.size() > 0)
|
|
|
|
{
|
2010-05-27 11:34:43 -06:00
|
|
|
t_matglossOther* buf;
|
|
|
|
|
|
|
|
((*alloc_matgloss_other_buffer_callback)(buf, materials->other.size()));
|
2010-05-05 15:04:10 -06:00
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->other.begin(), materials->other.end(), buf);
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return buf;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 14:38:51 -06:00
|
|
|
return NULL;
|
2010-05-05 15:04:10 -06:00
|
|
|
}
|
|
|
|
|
2010-08-18 15:00:49 -06:00
|
|
|
t_matgloss* Materials_getAllDesc(DFHackObject* mat)
|
|
|
|
{
|
|
|
|
if(mat != NULL)
|
|
|
|
{
|
|
|
|
DFHack::Materials* materials = (DFHack::Materials*)mat;
|
|
|
|
|
|
|
|
if(materials->alldesc.size() > 0)
|
|
|
|
{
|
|
|
|
t_matgloss* buf;
|
|
|
|
|
|
|
|
((*alloc_matgloss_buffer_callback)(buf, materials->alldesc.size()));
|
|
|
|
|
|
|
|
if(buf != NULL)
|
|
|
|
{
|
|
|
|
copy(materials->race.begin(), materials->alldesc.end(), buf);
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-05 15:04:10 -06:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|