1997Q3/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Re: [MUD&#45;Dev]  Virtual Chemistry -->
<!--X-From-R13: [ngg Qunggreyrl <ebbgNzcp.qla.zy.bet> -->
<!--X-Date: from babe.globecomm.net [207.51.48.8] by in12.ibm.net id 868895057.38504&#45;1 Mon Jul 14 15:44:17 1997 CUT -->
<!--X-Message-Id: Pine.LNX.3.96.970714163740.167A&#45;100000#mpc,dyn.ml.org -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199707140413.XAA03153@dfw&#45;ix14.ix.netcom.com -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Re: [MUD-Dev]  Virtual Chemistry</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:root#mpc,dyn.ml.org">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00131.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00133.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00127.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00131.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00132">Author</A>
&nbsp;|&nbsp;<A HREF="#00132">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00132">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Re: [MUD-Dev]  Virtual Chemistry</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>Subject</em>: Re: [MUD-Dev]  Virtual Chemistry</LI>
<LI><em>From</em>: Matt Chatterley &lt;<A HREF="mailto:root#mpc,dyn.ml.org">root#mpc,dyn.ml.org</A>&gt;</LI>
<LI><em>Date</em>: Mon, 14 Jul 1997 16:43:02 +0000 (GMT)</LI>
<LI><em>Reply-To</em>: <A HREF="mailto:neddy#itl,net">neddy#itl,net</A></LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>
On Sun, 13 Jul 1997, Jon A. Lambert wrote:

&gt; &gt; From: Matt Chatterley &lt;root#mpc,dyn.ml.org&gt;

&gt; &gt; I think so. Perhaps basic checking on assemble, ie 'are they mixable?'
&gt; &gt; (ie, you can't really mix a liquid and a gas), and then a causitive result
&gt; &gt; (just what *will* happen if you mix ground up dragons tooth and wolves
&gt; &gt; blood?). A central information storage could record that 'elements' X Y
&gt; &gt; and Z have certain reactions with each other, and mixtures could report
&gt; &gt; the quantities of each the contain to get the appropriate return, even.
&gt; &gt;

&gt; My assumptions were that the results of the combination/assembly were 
&gt; known in advance (created by builders).  I see from some of the other
&gt; posts and yours here that you could in fact create new assemblys on the fly 
&gt; given enough rudimentary (al)chemistry.  Perhaps this is a more interesting 
&gt; way to proceed?  

Thats the objective I have in mind at the moment - working up combinable
things with predeterminate results (recipes, basically) is more easily
do-able, but perhaps less flexible and less interesting. Actually
implementing a chemistry of some sort certainly seems possible (especially
if we make basic assumptions about the nature of a 'reaction').
   
&gt; &gt; &gt; Perhaps some attributes of an assembly class could be:
&gt; &gt; &gt; 
&gt; &gt; &gt; components list
&gt; &gt; &gt; spells list
&gt; &gt; &gt; energy/mana consumer
&gt; &gt; &gt; energy/mana producer
&gt; &gt; &gt; components list destroyed upon assembly
&gt; &gt; &gt; components list released upon disassembly
&gt; &gt; 
&gt; 
&gt; Another mundane example of alchemy using some odd mud language:
&gt; 
&gt; class bread implements assembly {
&gt;  list components = ((wheat , 2 cups),(salt, 1 tsp),(yeast,1 tsp));
&gt;  list skills = ("bake");
&gt;  list spells = ();
&gt;  int energy = 5000; // Cal
&gt;  int time = 40; // min
&gt;  list released = (crumbs);
&gt;  list destroyed = (wheat ,salt, yeast);
&gt; 
&gt;  class method assemble() {
&gt;    if (components.present() and skills.check() and energy &gt; 5000) {
&gt;      components.destroy();	
&gt;      consume(energy);
&gt;      return create(time); // instance bread in time
&gt;    }
&gt;  }
&gt; 
&gt;  class method disassemble() {
&gt;    released.create();
&gt;    destroyed.delete();
&gt;    return energy;
&gt;  }
&gt; 
&gt;  instance method eat() { 
&gt;    return disassemble();
&gt;  }
&gt; 
&gt;  class method bake() { 
&gt;    return assemble();
&gt;  }
&gt; 
&gt; }
&gt; 
&gt; Just a start, full of holes. :)

&lt;g&gt; Maybe so, also rudimentary, but at the same time, significantly more
advanced than many current techniques for creating bread.

With the above, anyone could acquire the ingredients, plus a suitable
facility for reacting them, and produce a quantity of bread. Of course, we
probably need to define certain things as 'basic' or 'elements'. In the
greater case (read: for fantasy based muds - SciFi could perceivably be
quite different), we can use 'element' differently to traditional (modern)
chemistry.

An element now would be Na (sodium), Ag (silver), Mn (Manganese) etc,
basic things which do not break down any further (excluding the breakdown
to subatomic particles).

For the purposes of the fantasy environment, elements might be: Wheat,
beef, bone, wood. Things that can be broken down into organic chains, etc
now - but which could be treated as basic by (al)chemy in a more primitive
environment.

Regards,
	-Matt Chatterley
	<A  HREF="http://user.itl.net/~neddy/index.html">http://user.itl.net/~neddy/index.html</A>
"Never enter an arsekicking contest with a porcupine."-Cohen The Barbarian


</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00124" HREF="msg00124.html">Re: [MUD-Dev]  Virtual Chemistry</A></STRONG>
<UL><LI><EM>From:</EM> "Jon A. Lambert" &lt;jlsysinc#ix,netcom.com&gt;</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00131.html">Re: [MUD-Dev]  Virtual Chemistry</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00133.html">Re: [MUD-Dev]  Virtual Chemistry</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00127.html">Re: [MUD-Dev]  Virtual Chemistry</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00131.html">Re: [MUD-Dev]  Virtual Chemistry</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00132"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00132"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><STRONG>Re: [MUD-Dev]  Virtual Chemistry</STRONG>, <EM>(continued)</EM>
<ul compact>
<ul compact>
<ul compact>
<LI><strong><A NAME="00134" HREF="msg00134.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Matt Chatterley <a href="mailto:root#mpc,dyn.ml.org">root#mpc,dyn.ml.org</a>, Tue 15 Jul 1997, 00:49 GMT
</LI>
</ul>
</ul>
<LI><strong><A NAME="00114" HREF="msg00114.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Marian Griffith <a href="mailto:gryphon#iaehv,nl">gryphon#iaehv,nl</a>, Sun 13 Jul 1997, 19:17 GMT
</LI>
<LI><strong><A NAME="00124" HREF="msg00124.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Mon 14 Jul 1997, 11:14 GMT
<UL>
<LI><strong><A NAME="00127" HREF="msg00127.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Adam Wiggins <a href="mailto:nightfall#user1,inficad.com">nightfall#user1,inficad.com</a>, Mon 14 Jul 1997, 12:09 GMT
</LI>
<LI><strong><A NAME="00132" HREF="msg00132.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Matt Chatterley <a href="mailto:root#mpc,dyn.ml.org">root#mpc,dyn.ml.org</a>, Mon 14 Jul 1997, 22:44 GMT
</LI>
</UL>
</LI>
<LI><strong><A NAME="00131" HREF="msg00131.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Mon 14 Jul 1997, 13:55 GMT
</LI>
<LI><strong><A NAME="00310" HREF="msg00310.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Huibai <a href="mailto:ashen#pixi,com">ashen#pixi,com</a>, Thu 31 Jul 1997, 14:22 GMT
</LI>
<LI><strong><A NAME="00332" HREF="msg00332.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Jon A. Lambert <a href="mailto:jlsysinc#ix,netcom.com">jlsysinc#ix,netcom.com</a>, Sat 02 Aug 1997, 14:26 GMT
<UL>
<LI><strong><A NAME="00334" HREF="msg00334.html">Re: [MUD-Dev]  Virtual Chemistry</A></strong>, 
Matt Chatterley <a href="mailto:root#mpc,dyn.ml.org">root#mpc,dyn.ml.org</a>, Sat 02 Aug 1997, 15:59 GMT
</LI>
</UL>
</LI>
</ul>
</LI>
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>