/* * pstrait.cpp * * Copyright (C) 2001 Atomic Blue (info@planeshift.it, http://www.atomicblue.org) * * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation (version 2 of the License) * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #include #include "pstrait.h" const char *psTrait::locationString[] = {"NONE","FACE","HAIR_STYLE","BEARD_STYLE","HAIR_COLOR","SKIN_TONE","ITEM"}; psTrait::psTrait() { uid=0; location=PSTRAIT_LOCATION_NONE; } psTrait::~psTrait() { } const char * psTrait::GetLocationString() const { return locationString[(int)location]; } csString psTrait::ToXML( bool compact ) const { csString str; csString genderStr; switch (gender) { case PSCHARACTER_GENDER_NONE: genderStr = "N"; break; case PSCHARACTER_GENDER_MALE: genderStr += "M"; break; case PSCHARACTER_GENDER_FEMALE: genderStr = "F"; break; default: genderStr = "M"; break; } if (compact) { str.Format("", uid,next_trait_uid, GetLocationString(),cstr_id_mesh, cstr_id_material,cstr_id_texture, shaderVar.GetData() ); } else { str.Format("", uid,next_trait_uid,race,genderStr.GetData(), GetLocationString(),name.GetData(),cstr_id_mesh, cstr_id_material,cstr_id_texture, shaderVar.GetData() ); } return str; }