artificial-intelligence.html.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:13k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  5. <title>Artificial intelligence : OpenKore source code documentation</title>
  6. <link rel="stylesheet" type="text/css" href="openkore.css">
  7. <!-- Fix broken PNG transparency for IE/Win5-6+ -->
  8. <!--[if gte IE 5.5000]>
  9. <script type="text/javascript" src="pngfix.js"></script>
  10. <![endif]-->
  11. <style type="text/css">
  12. <!--
  13. .example {
  14. margin: 0.3cm;
  15. margin-left: 0.5cm;
  16. }
  17. .comment {
  18. font-style: italic;
  19. }
  20. .term {
  21. border-bottom: 1px dotted black;
  22. }
  23. .cstr {
  24. color: #007700;
  25. }
  26. -->
  27. </style>
  28. </head>
  29. <body>
  30. <div id="title">OpenKore source code documentation</div>
  31. <div id="navigation">
  32. <ul>
  33. <li><a href="http://openkore.sourceforge.net/">Main website</a></li>
  34. <li><a href="index.html">Table of contents</a></li>
  35. <li><b>Artificial intelligence</b></li>
  36. </ul>
  37. </div>
  38. <div id="main">
  39. <h1>How the AI subsystem is designed</h1>
  40. The AI subsystem isn't really complex, but it could take a while to understand it's design.
  41. <p>
  42. All "intelligence" is handled inside the <code>AI()</code> function (right now it's one big function but
  43. we hope to split it in the future).
  44. As explained in the <a>Main loop &amp; initialization</a> page, the <code>AI()</code> function only runs less than a fraction of a second.
  45. <p>
  46. Basically, the AI tells Kore to do certain things based on the current situation. I'll try to explain it with some examples.
  47. <a name="ex1"></a>
  48. <h2>Example 1: Random walk</h2>
  49. You're probably familiar with Kore's random walk feature.
  50. If there are no monsters and Kore isn't doing anything, it will walk to a random spot on the map, and attack any monsters it encounters.
  51. The following piece of code (within the <code>AI()</code> function makes Kore walk to a random spot if it isn't doing anything:
  52. <pre class="example">
  53. 1   <span class="comment">##### RANDOM WALK #####</span>
  54. 2   <b>if</b> ($config{'route_randomWalk'} && $ai_seq[0] <b>eq</b> "" && @{$field{'field'}} > 1 && !$cities_lut{$field{'name'}.'.rsw'}) {
  55. 3    <span class="comment"># Find a random block on the map that we can walk on</span>
  56. 4    <b>do</b> { 
  57. 5    $ai_v{'temp'}{'randX'} = int(rand() * ($field{'width'} - 1));
  58. 6    $ai_v{'temp'}{'randY'} = int(rand() * ($field{'height'} - 1));
  59. 7    } <b>while</b> ($field{'field'}[$ai_v{'temp'}{'randY'}*$field{'width'} + $ai_v{'temp'}{'randX'}]);
  60. 8
  61. 9    <span class="comment"># Move to that block</span>
  62. 10   message <span class="cstr">"Calculating random route to: $maps_lut{$field{'name'}.'.rsw'}($field{'name'}): $ai_v{'temp'}{'randX'}, $ai_v{'temp'}{'randY'}n"</span>, <span class="cstr">"route"</span>;
  63. 11   ai_route(%{$ai_v{'temp'}{'returnHash'}},
  64. 12   $ai_v{'temp'}{'randX'},
  65. 13   $ai_v{'temp'}{'randY'},
  66. 14   $field{'name'},
  67. 15   0,
  68. 16   $config{'route_randomWalk_maxRouteTime'},
  69. 17   2,
  70. 18   undef,
  71. 19   undef,
  72. 20   1);
  73. 21  }
  74. </pre>
  75. We call this block of code an <em class="term">AI code block</em>.
  76. In other words, an AI code block is <em>an entire block of code which deals with a certain part of the AI</em>.
  77. <h3>Situation check</h3>
  78. In line 1, it checks:
  79. <ol>
  80. <li>whether the configuration option <code>route_randomWalk</code> is on</li>
  81. <li>whether there are currently no other active <em class="term">AI sequences</em> (see below)</li>
  82. <li>whether we're currently NOT in a city </li>
  83. </ol>
  84. If all of the above is true, then Kore will run the code inside the brackets.
  85. <p>
  86. What is an <em class="term">AI sequence</em>? It is a value within the <code>@ai_seq</code> array.
  87. This array is a <em>command queue</em>.
  88. <p>
  89. AI code blocks prepend values into this array so they can know when it's their turn to do something.
  90. When an AI code block is done with it's task, it will remove that value from the array.
  91. So, if <code>@ai_seq</code> is empty, then that means all AI code blocks have finished and Kore isn't doing anything else.
  92. And this is when the random walk AI code block jumps in.
  93. <p>
  94. There is also the <code>@ai_seq_args</code> array, used to store temporary variables used by the current AI code block.
  95. If a value is prepended into <code>@ai_seq</code>, then a value must also be prepended into <code>@ai_seq_args</code>.
  96. More on this later.
  97. <h3>Finding a random position to walk to</h3>
  98. Line 4-7 tries to find a random position in the map that you can walk on.
  99. (<code>$field{field}</code> is a reference to an array which contains information about which blocks you can and can't walk on.
  100. But that's not important in this example. You just have to understand what this block does.)
  101. <p>
  102. The result coordinate is put into these two variables:
  103. <ul>
  104. <li><code>$ai_v{temp}{randX}</code></li>
  105. <li><code>$ai_v{temp}{randY}</code></li>
  106. </ul>
  107. <small>(In case you didn't know, <code>$foo{bar}</code> is the same as <code>$foo{'bar'}</code>.)</small>
  108. <h3>Moving</h3>
  109. Line 11-20 is the code which tells Kore to move to the random position.
  110. It tells <code>ai_route()</code> where it wants to go to.
  111. <code>ai_route()</code> prepends a <code>"route"</code> AI sequence in <code>@ai_seq</code>, and arguments in a hash
  112. (which is then prepended into <code>@ai_seq_args</code> and immediately returns.
  113. Shortly after this, the entire <code>AI()</code> function returns.
  114. The point is, <code>ai_route()</code> is <em>not synchronous</em>.
  115. <p>
  116. In less than a fraction of a second, the <code>AI()</code> function is called again.
  117. Because the <code>@ai_seq</code> variable is not empty anymore, the random walk AI code block is never activated
  118. (the expression <code>'$ai_seq[0] eq ""'</code> is false).
  119. <p>
  120. The AI code block that handles routing is elsewhere in the <code>AI()</code> function.
  121. It sees that the first value in <code>@ai_seq</code> is <code>"route"</code>, and thinks <em>"hey, now it's my turn to do something!"</em>.
  122. (The route AI code block is very complex so I'm not going to explain what it does, but you get the idea.)
  123. When the route AI code block has finished, it will remove the first item from <code>@ai_seq</code>.
  124. If <code>@ai_seq</code> is empty, then the random route AI code block is activated again.
  125. <h2>Example 2: Attacking monsters while walking to a random spot</h2>
  126. You might want to wonder how Kore is able to determine whether to attack monsters when it's walking.
  127. Let's take a look at a small piece of it's source code:
  128. <pre class="example">
  129.     <span class="comment">##### AUTO-ATTACK #####</span>
  130.     <b>if</b> (($ai_seq[0] <b>eq</b> <span class="cstr">""</span> || $ai_seq[0] <b>eq</b> <span class="cstr">"route"</span> || $ai_seq[0] <b>eq</b> <span class="cstr">"route_getRoute"</span> || $ai_seq[0] <b>eq</b> <span class="cstr">"route_getMapRoute"</span> || $ai_seq[0] <b>eq</b> <span class="cstr">"follow"</span>
  131.       || $ai_seq[0] <b>eq</b> <span class="cstr">"sitAuto"</span> || $ai_seq[0] <b>eq</b> <span class="cstr">"take"</span> || $ai_seq[0] <b>eq</b> <span class="cstr">"items_gather"</span> || $ai_seq[0] <b>eq</b> <span class="cstr">"items_take"</span>)
  132.       ...
  133. </pre>
  134. As you can see here, the auto-attack AI code block is run if any of the above AI sequences are active.
  135. So when Kore is walking (<code>$ai_seq_args[0]</code> is "route"), Kore continues to check for monsters to attack.
  136. <p>
  137. But as you may know, if you manually type "move WhateEverMapName" in the console, Kore will move to that map without attacking
  138. monsters (yes, this is intentional behavior). Why is that?
  139. <p>
  140. As seen in example 1, the <code>ai_route()</code> function initializes the route AI sequence.
  141. That function accepts a parameter called "attackOnRoute". <code>$ai_seq_args[0]{attackOnRoute}</code> is set to the same value as this parameter.
  142. Kore will only attack monsters while moving, if that parameter is set to 1.
  143. When you type "move" in the console, that parameter is set to 0. The random walk AI code block however sets that parameter to 1.
  144. <p>
  145. Inside the auto-attack AI code block, Kore checks whether the argument hash that's associated with the "route" AI sequence has a
  146. 'attackOnRoute' key, and whether the value is 1.
  147. <pre class="example">
  148.     ...
  149.     $ai_v{'temp'}{'ai_route_index'} = binFind(@ai_seq, <span class="cstr">"route"</span>);
  150.     <b>if</b> ($ai_v{'temp'}{'ai_route_index'} ne <span class="cstr">""</span>) {
  151.         $ai_v{'temp'}{'ai_route_attackOnRoute'} = $ai_seq_args[$ai_v{'temp'}{'ai_route_index'}]{'attackOnRoute'};
  152.     }
  153.     ...
  154.     <span class="comment"># Somewhere else in the auto-attack AI code block, Kore checks whether
  155.     # $ai_v{'temp'}{'ai_route_attackOnRoute'} is set to 1.</span>
  156. </pre>
  157. <h2>Timeouts: To wait a while before doing something</h2>
  158. In certain cases you may want the program to wait a while before doing anything else.
  159. For example, you may want to send a "talk to NPC" packet to the server, then send a "choose NPC menu item 2" packet 2 seconds later.
  160. <p>
  161. The first thing you would think of is probably to use the <code>sleep()</code> function.
  162. However, that is a bad idea. <code>sleep()</code> blocks the entire program. During the sleep, nothing else can be performed.
  163. User command input will not work, other AI sequences are not run, network data is not received, etc.
  164. <p>
  165. The right thing to do is to use the <a href="Utils.html#timeOut"><code>timeOut()</code></a> function.
  166. The API documentation entry for that function has two examples. Here's another example, demonstrating how
  167. you can use the timeOut() function in an AI sequence. This example initializes a conversation with NPC 1337 (a Kapra NPC).
  168. Then two seconds later, it sends a "choose NPC menu item 2" packet.
  169. <pre class="example">
  170. <span class="comment"># The AI() function is run in the main loop</span>
  171. <b>sub</b> AI {
  172.         ...
  173.         <b>if</b> ($somethingHappened) {
  174.                 <b>my</b> %args;
  175.                 $args{stage} = <span class="cstr">'Just started'</span>;
  176.                 <b>unshift</b> @ai_seq, <span class="cstr">"NpcExample"</span>;
  177.                 <b>unshift</b> @ai_seq_args, %args;
  178.                 $somethingHappened = 0;
  179.         }
  180.         <b>if</b> ($ai_seq[0] <b>eq</b> <span class="cstr">"NpcExample"</span>) {
  181.                 <b>if</b> ($ai_seq_args[0]{stage} <b>eq</b> <span class="cstr">'Just started'</span>) {
  182.                         <span class="comment"># This AI sequence just started
  183.                         # Initialize a conversation with NPC 1337</span>
  184.                         sendTalk($net, 1337);
  185.                         <span class="comment"># Store the current time in a variable</span>
  186.                         $ai_seq_args[0]{waitTwoSecs}{time} = <b>time</b>;
  187.                         <span class="comment"># We want to wait two seconds</span>
  188.                         $ai_seq_args[0]{waitTwoSecs}{timeout} = 2;
  189.                         $ai_seq_args[0]{stage} = <span class="cstr">'Initialized conversation'</span>;
  190.                 } <b>elsif</b> ($ai_seq_args[0]{stage} <b>eq</b> <span class="cstr">'Initialized conversation'</span>
  191.                       <span class="comment"># This 'if' statement is only true if two seconds have passed
  192.                       # since $ai_seq_args[0]{waitTwoSecs}{time} is set</span>
  193.                       && timeOut( $ai_seq_args[0]{waitTwoSecs} )
  194.                 ) {
  195.                         <span class="comment"># Two seconds have now passed</span>
  196.                         sendTalkResponse($net, 1337, 2);
  197.                         <span class="comment"># We're done; remove this AI sequence</span>
  198.                         <b>shift</b> @ai_seq;
  199.                         <b>shift</b> @ai_seq_args;
  200.                 }
  201.         }
  202.         ...
  203. }
  204. </pre>
  205. <h2>Conclusion &amp; summary</h2>
  206. The entire AI subsystem is kept together by these two variables:
  207. <ul>
  208. <li><code>@ai_seq</code> : a queue which contains AI sequence names.
  209. Usually, AI code blocks are run based on the value of the first item in the queue
  210. (though this doesn't have to be true; it depends on how the AI code block is programmed).</li>
  211. <li><code>@ai_seq_args</code> : contains arguments that's associated with current AI sequence.</li>
  212. </ul>
  213. The design is pretty simple. This allows the system to be very flexible:
  214. you can do pretty much anything you want. There aren't many real limitations
  215. (but that's just my opinion).
  216. <p>
  217. The <code>AI()</code> function runs only very shortly. So AI code blocks shouldn't do anything that can block the function for a long time.
  218. <h3>Glossary</h3>
  219. <ul>
  220. <li>An <em class="term">AI code block</em> is an entire block of code which deals with a certain part of the AI.</li>
  221. <li>An <em class="term">AI sequence</em> is a value within the <code>@ai_seq</code> queue (and an associated value inside the <code>@ai_seq_args</code> array).</li>
  222. </ul>
  223. <p><hr><p>
  224. <div id="footer">
  225. <ul>
  226. <li><a href="http://validator.w3.org/check?uri=referer" title="Valid HTML 4.01!"><img src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" height="31" width="88"></a></li>
  227. <li><a href="http://www.mozilla.org/products/firefox/" title="Get Firefox - Take Back the Web"><img width="104" height="32" src="http://www.mozilla.org/products/firefox/buttons/getfirefox_small.png" alt="Get Firefox - Take Back the Web"></a></li>
  228. <li><a href="http://www.mozilla.org/products/firefox/" title="If you were looking at this page in any browser but Microsoft Internet Explorer, it would look and run better and faster"><img width="45" height="45" src="http://linuxart.com/img/noIE-small.png" alt="If you were looking at this page in any browser but Microsoft Internet Explorer, it would look and run better and faster"></a></li>
  229. </ul>
  230. </div>
  231. </div>
  232. </body>
  233. </html>