From c79406e025a17ec29afca2458f916d3f2d49447d Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Mon, 8 Jun 2009 08:23:48 -0600 Subject: Remove duplicate code from Being --- src/being.cpp | 41 ----------------------------------------- 1 file changed, 41 deletions(-) (limited to 'src/being.cpp') diff --git a/src/being.cpp b/src/being.cpp index 3593bb94..4f28425e 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -917,19 +917,6 @@ int Being::getHairStyleCount() return mNumberOfHairstyles; } -int Being::getHairColorCount() -{ - return mNumberOfHairColors; -} - -std::string Being::getHairColor(int index) -{ - if (index < 0 || index >= mNumberOfHairColors) - return "#000000"; - - return hairColors[index]; -} - void Being::load() { // Hairstyles are encoded as negative numbers. Count how far negative @@ -940,32 +927,4 @@ void Being::load() hairstyles++; mNumberOfHairstyles = hairstyles; - - XML::Document doc(HAIR_FILE); - xmlNodePtr root = doc.rootNode(); - - // Add an initial hair color - hairColors.resize(1, "#000000"); - - if (!root || !xmlStrEqual(root->name, BAD_CAST "colors")) - { - logger->log("Error loading being hair configuration file"); - } else { - for_each_xml_child_node(node, root) - { - if (xmlStrEqual(node->name, BAD_CAST "color")) - { - int index = atoi(XML::getProperty(node, "id", "-1").c_str()); - std::string value = XML::getProperty(node, "value", ""); - - if (index >= 0 && !value.empty()) { - if (index >= mNumberOfHairColors) { - mNumberOfHairColors = index + 1; - hairColors.resize(mNumberOfHairColors, "#000000"); - } - hairColors[index] = value; - } - } - } - } } -- cgit v1.2.3-60-g2f50