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

外挂编程

开发平台:

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>Initialization and main loop : 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. </head>
  12. <body>
  13. <div id="title">OpenKore source code documentation</div>
  14. <div id="navigation">
  15. <ul>
  16. <li><a href="http://openkore.sourceforge.net/">Main website</a></li>
  17. <li><a href="index.html">Table of contents</a></li>
  18. <li><b>Initialization &amp; main loop</b></li>
  19. </ul>
  20. </div>
  21. <div id="main">
  22. <h1>Initialization &amp; main loop</h1>
  23. <h2>High-level description of what Kore does</h2>
  24. When you start Kore, it first loads configuration and table files. Then 
  25. it connects to the Ragnarok Online server. It will now process all 
  26. data received from the server, and calculate what to do (walking,
  27. attacking monsters, etc.), in an infinite loop (until the user tells
  28. Kore to quit).
  29. <h2>Initialization</h2>
  30. <b>openkore.pl</b> is the main source file. The following image
  31. describes what happens when openkore.pl is run:
  32. <p><img src="overview.png" alt="Overview" width="496" height="500">
  33. <p>
  34. After this, Kore will enter the main loop.
  35. <h2>Main loop</h2>
  36. Every loop in the main loop lasts very shortly (exception: when it's calculating
  37. a route it can take a while).
  38. In each loop, the following things are performed:
  39. <ol>
  40. <li>
  41. <h4>Re-initialize X-Kore if necessary</h4>
  42. <small>TODO: document how X-Kore works.</small>
  43. </li>
  44. <li>
  45. <h4>Parse command input</h4>
  46. If there is keyboard input available, then Kore will read the keyboard input and
  47. process the data.
  48. <ul>
  49. <li><a href="Interface.html">The Interface module</a> is the module that checks whether there is keyboard input.</li>
  50. <li>The main loop retrieves the keyboard input data, and passes that data to the <a href="Commands.html">Commands module</a>, where it is processed.</li>
  51. </ul>
  52. </li>
  53. <li>
  54. <h4>Process and handle data from RO server</h4>
  55. <small>TODO</small>
  56. </li>
  57. <li>
  58. <h4>Process AI</h4>
  59. The AI ("Artificial Intelligence") function calculates what
  60. actions to perform, when, and in what way. See also
  61. <a href="artificial-intelligence.html">the page that describes the AI in detail</a>.
  62. </li>
  63. <li>
  64. <h4>Handle connection states</h4>
  65. The function <a href="Network.html#Network::checkConnection"><code>Network::checkConnection()</code></a> handles connection issues.
  66. See <a href="Network.html"> the Network module</a> for more information.
  67. Do not confuse this step with step 3, which handles network <em>data</em>, not network connection issues.
  68. </li>
  69. <li>
  70. <h4>Misc other stuff</h4>
  71. </li>
  72. </ol>
  73. <p><hr><p>
  74. <div id="footer">
  75. <ul>
  76. <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>
  77. <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>
  78. <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>
  79. </ul>
  80. </div>
  81. </div>
  82. </body>
  83. </html>