RPI/Mathactivity/XML

From OLPC
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

XML Howto

http://www.boddie.org.uk/python/XML_intro.html
http://docs.python.org/lib/module-xml.dom.minidom.html

Math Format

  • Relatively Extensible
  • Prototype Parser and Math Engine in PHP
  • Polynomials only at this time
  • Math engine is not yet complete, will have to discuss some ideas in meeting Tuesday
    • Ideas for storing expressions? i.e. log(x), (x^3), etc?
  • Notes to self:
    • Operations?
    • Auto-generate constants?
  • 'Barking up the wrong tree?' - MathML - http://www.w3.org/Math/
  • Encapsulate MathML inside our own XML wrapper
    • Unique identifiers per problem
    • Level ID for each problem
    • Answer to problem
    • Hints
    • Chances


<math_problems>
  <problem>
      <lt sign="1">12</lt>
      <lt var="3">4</lt>
      16
  </problem>
  <problem>
      <lt>1</lt>
      <lt>4</lt>
  </problem>
</math_problems>

Goal Format

Persistence of State Format

<state>
	<players>
	</players>
		<goal>
			<resource>
                               <required>
                               </required>
				<obtained>
				</obtained>
			</resource>
			<purchased_subgoal>
			</purchased_subgoal>
			<problems>
				<used>
				</used>
			</problems>
		</goal>
</state>

Resource and Market Format

<economy>
<resources>
  <resource>
    <name>Mud</name>
    <uid>1</uid>
    <imgpath>./mud.gif</imgpath>
    <probid>100</probid>
  </resource>
  <resource>
    <name>Wood</name>
    <uid>2</uid>
    <imgpath>./wood.gif</imgpath>
    <probid>101</probid>
  </resource>
  <resource>
    <name>Stone</name>
    <uid>3</uid>
    <imgpath>./stone.gif</imgpath>
    <probid>102</probid>
  </resource>
  <resource>
    <name>Metal</name>
    <uid>4</uid>
    <imgpath>./metal.gif</imgpath>
    <probid>103</probid>
  </resource>
<resources>
<market type="symmetric (or asymmetric)">
<exchange>
  <item uid="1" />
  <prices>
    <price uid="2">1/3</price>
    <price uid="3">1/5</price>
    <price uid="4">1/10</price>
  </prices>
</exchange>
<exchange>
  <item uid="2" />
  <prices>
    <price uid="1">2</price>
    <price uid="3">1/2</price>
    <price uid="4">1/4</price>
  </prices>
</exchange>
...
</market>
</economy>