I am using Blender 2.5 Exporter to export a .blend file from blender to Ogre mesh and dotScene files. The exporter is essentially a python script and it sets all the boolean values to either 'True' of 'False' in sentence case.
I then attempt to load these files into jMonkeyEngine, but that gives me an
org.xml.sax.SAXException: Expected a boolean, got'True'
because it's sentence case, not lower case. A find/replace solves the issue, but the scene I'm attempting to load has hundreds of mesh files, and I don't intend to do a find/replace on all of them.
Yes, I could make a script which does the search/replace, but I would like to have a cleaner solution. Is there a way I could tell the sax parser to disregard case in boolean values? Please help me with this issue.
public static boolean parseBool(String bool, boolean def) throws SAXException{ if (bool == null || bool.equals("")) return def; else if (bool.equals("false")) return false; else if (bool.equals("true")) return true; else throw new SAXException("Expected a boolean, got'"+bool+"'"); }I guess I should request the jME3 developers to make it bool.equalsIgnoreCase. – Zoltán Sep 8 '11 at 12:51