mm_os 3.3.0 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (380) hide show
  1. package/LICENSE +21 -201
  2. package/README.md +491 -99
  3. package/README_EN.md +498 -0
  4. package/adapter/adapter.js +431 -0
  5. package/adapter/custom_persistence.js +660 -0
  6. package/adapter/mqtt.js +273 -0
  7. package/adapter/socket.js +113 -0
  8. package/adapter/web.js +67 -0
  9. package/adapter/websocket.js +146 -0
  10. package/com/api/com.json +5 -0
  11. package/{core/com → com}/api/config.tpl.json +8 -8
  12. package/com/api/drive.js +708 -0
  13. package/com/api/index.js +198 -0
  14. package/com/api/oauth.js +200 -0
  15. package/com/api/script.tpl.js +32 -0
  16. package/com/cmd/README.md +11 -0
  17. package/com/cmd/com.json +5 -0
  18. package/com/cmd/config.tpl.json +122 -0
  19. package/com/cmd/drive.js +1548 -0
  20. package/com/cmd/index.js +1066 -0
  21. package/com/cmd/msg.json +48 -0
  22. package/com/cmd/nlp.js +525 -0
  23. package/com/cmd/script.tpl.js +32 -0
  24. package/com/db/com.json +5 -0
  25. package/com/db/drive.js +1999 -0
  26. package/com/db/index.js +242 -0
  27. package/com/event/com.json +5 -0
  28. package/{core/com → com}/event/config.tpl.json +8 -8
  29. package/com/event/drive.js +59 -0
  30. package/com/event/index.js +409 -0
  31. package/com/event/script.tpl.js +23 -0
  32. package/com/mqtt/com.json +5 -0
  33. package/{core/com → com}/mqtt/config.tpl.json +3 -5
  34. package/com/mqtt/drive.js +676 -0
  35. package/com/mqtt/index.js +822 -0
  36. package/com/mqtt/mm_mqtt.js +425 -0
  37. package/com/mqtt/script.tpl.js +723 -0
  38. package/com/nav/com.json +5 -0
  39. package/com/nav/config.tpl.json +84 -0
  40. package/com/nav/drive.js +702 -0
  41. package/com/nav/index.js +231 -0
  42. package/{core/com → com}/nav/tpl/admin_pc/page_config.vue +280 -280
  43. package/{core/com → com}/nav/tpl/admin_pc/page_config_form.vue +194 -194
  44. package/com/nav/tpl/admin_pc/page_form.vue +180 -0
  45. package/com/nav/tpl/admin_pc/page_view.vue +124 -0
  46. package/com/nav/tpl/dev_pc/page_default.vue +247 -0
  47. package/com/nav/tpl/dev_pc/page_type.vue +313 -0
  48. package/com/nav/tpl/home_pc/page_default.vue +234 -0
  49. package/com/nav/tpl/home_pc/page_form.vue +137 -0
  50. package/com/nav/tpl/home_pc/page_list.vue +234 -0
  51. package/com/nav/tpl/home_pc/page_nav.vue +221 -0
  52. package/com/nav/tpl/home_pc/page_type.vue +234 -0
  53. package/com/nav/tpl/home_pc/page_view.vue +125 -0
  54. package/com/nav/tpl/home_phone/page_channel.vue +234 -0
  55. package/com/nav/tpl/home_phone/page_default.vue +234 -0
  56. package/com/nav/tpl/home_phone/page_form.vue +137 -0
  57. package/com/nav/tpl/home_phone/page_nav.vue +237 -0
  58. package/com/nav/tpl/home_phone/page_type.vue +234 -0
  59. package/com/nav/tpl/home_phone/page_view.vue +125 -0
  60. package/com/nav/viewmodel.js +446 -0
  61. package/com/param/com.json +5 -0
  62. package/{core/com → com}/param/config.tpl.json +7 -1
  63. package/com/param/drive.js +502 -0
  64. package/com/param/index.js +155 -0
  65. package/com/param/script.tpl.js +12 -0
  66. package/com/pendant/com.json +5 -0
  67. package/{core/com/component → com/pendant}/config.tpl.json +15 -13
  68. package/com/pendant/drive.js +204 -0
  69. package/com/pendant/index.js +441 -0
  70. package/com/pendant/pendant.html +16 -0
  71. package/com/pendant/script.tpl.js +18 -0
  72. package/com/socket/com.json +5 -0
  73. package/com/socket/config.tpl.json +12 -0
  74. package/com/socket/drive.js +651 -0
  75. package/com/socket/index.js +351 -0
  76. package/com/socket/script.tpl.js +41 -0
  77. package/com/sql/com.json +5 -0
  78. package/{core/com → com}/sql/config.tpl.json +13 -9
  79. package/com/sql/drive.js +1259 -0
  80. package/com/sql/index.js +150 -0
  81. package/com/sql/script.tpl.js +47 -0
  82. package/com/static/com.json +5 -0
  83. package/{core/com → com}/static/config.tpl.json +10 -6
  84. package/com/static/drive.js +194 -0
  85. package/com/static/index.js +226 -0
  86. package/com/static/script.tpl.js +28 -0
  87. package/com/task/com.json +5 -0
  88. package/{core/com → com}/task/config.tpl.json +4 -6
  89. package/com/task/drive.js +405 -0
  90. package/com/task/index.js +148 -0
  91. package/com/task/script.tpl.js +37 -0
  92. package/com/template/com.json +5 -0
  93. package/com/template/config.tpl.json +16 -0
  94. package/com/template/drive.js +80 -0
  95. package/com/template/index.js +141 -0
  96. package/com.js +156 -0
  97. package/common/README.md +2 -0
  98. package/common/handler/msg/handler.json +22 -0
  99. package/common/handler/msg/index.js +23 -0
  100. package/common/handler/player/handler.json +22 -0
  101. package/common/handler/player/index.js +287 -0
  102. package/common/handler/user/handler.json +22 -0
  103. package/common/handler/user/index.js +23 -0
  104. package/common/middleware/web_after/index.js +29 -0
  105. package/common/middleware/web_after/middleware.json +9 -0
  106. package/common/middleware/web_base/index.js +113 -0
  107. package/common/middleware/web_base/middleware.json +19 -0
  108. package/common/middleware/web_before/index.js +33 -0
  109. package/common/middleware/web_before/middleware.json +9 -0
  110. package/common/middleware/web_cors/index.js +87 -0
  111. package/common/middleware/web_cors/middleware.json +24 -0
  112. package/common/middleware/web_error/index.js +119 -0
  113. package/common/middleware/web_error/middleware.json +18 -0
  114. package/common/middleware/web_ip/index.js +15 -0
  115. package/common/middleware/web_ip/middleware.json +14 -0
  116. package/common/middleware/web_logger/index.js +156 -0
  117. package/common/middleware/web_logger/middleware.json +14 -0
  118. package/common/middleware/web_main/index.js +24 -0
  119. package/common/middleware/web_main/middleware.json +9 -0
  120. package/common/middleware/web_static/index.js +73 -0
  121. package/common/middleware/web_static/middleware.json +54 -0
  122. package/common/middleware/web_waf/index.js +385 -0
  123. package/common/middleware/web_waf/middleware.json +13 -0
  124. package/common/model/msg/index.js +88 -0
  125. package/common/model/msg/model.json +401 -0
  126. package/common/model/player/index.js +63 -0
  127. package/common/model/player/model.json +185 -0
  128. package/common/model/user/index.js +11 -0
  129. package/common/model/user/model.json +219 -0
  130. package/core/app/config.tpl.json +67 -0
  131. package/core/app/index.js +632 -0
  132. package/core/app/script.tpl.js +52 -0
  133. package/core/channel/index.js +899 -0
  134. package/core/channel/matcher.js +585 -0
  135. package/core/com/config.tpl.json +16 -0
  136. package/core/com/index.js +74 -0
  137. package/core/com/script.tpl.js +5 -0
  138. package/core/component/component.js +42 -0
  139. package/core/component/config.tpl.json +63 -0
  140. package/core/component/index.js +273 -0
  141. package/core/component/script.tpl.js +19 -0
  142. package/core/controller/config.tpl.json +14 -0
  143. package/core/controller/index.js +373 -0
  144. package/core/controller/script.tpl.js +27 -0
  145. package/core/factory/config.tpl.json +14 -0
  146. package/core/factory/entity.js +275 -0
  147. package/core/factory/index.js +241 -0
  148. package/core/factory/script.tpl.js +16 -0
  149. package/core/game/bat/index.js +137 -0
  150. package/core/game/bat/world.js +622 -0
  151. package/core/game/config.tpl.json +16 -0
  152. package/core/game/entity_admin.js +230 -0
  153. package/core/game/index.js +186 -0
  154. package/core/handler/config.tpl.json +22 -0
  155. package/core/handler/index.js +181 -0
  156. package/core/handler/script.tpl.js +23 -0
  157. package/core/logic/config.tpl.json +14 -0
  158. package/core/logic/index.js +59 -0
  159. package/core/logic/script.tpl.js +19 -0
  160. package/core/middleware/config.tpl.json +16 -0
  161. package/core/middleware/index.js +125 -0
  162. package/core/middleware/script.tpl.js +37 -0
  163. package/core/mod/config.tpl.json +22 -0
  164. package/core/mod/index.js +130 -0
  165. package/core/mod/script.tpl.js +34 -0
  166. package/core/model/config.tpl.json +219 -0
  167. package/core/model/index.js +272 -0
  168. package/core/model/model.js +27 -0
  169. package/core/model/script.tpl.js +20 -0
  170. package/core/notifier/config.tpl.json +14 -0
  171. package/core/notifier/index.js +77 -0
  172. package/core/notifier/script.tpl.js +20 -0
  173. package/core/plugin/config.tpl.json +24 -0
  174. package/core/plugin/index.js +232 -0
  175. package/core/plugin/script.tpl.js +51 -0
  176. package/core/pusher/config.tpl.json +14 -0
  177. package/core/pusher/index.js +161 -0
  178. package/core/pusher/script.tpl.js +20 -0
  179. package/core/room/bat/index.js +170 -0
  180. package/core/room/bat/room.js +524 -0
  181. package/core/room/config.tpl.json +20 -0
  182. package/core/room/index.js +249 -0
  183. package/core/room/room.js +61 -0
  184. package/core/scene/config.tpl.json +14 -0
  185. package/core/scene/index.js +466 -0
  186. package/core/scene/loop.js +1255 -0
  187. package/core/scene/map.js +28 -0
  188. package/core/scene/script.tpl.js +22 -0
  189. package/core/sender/config.tpl.json +14 -0
  190. package/core/sender/index.js +79 -0
  191. package/core/sender/script.tpl.js +20 -0
  192. package/core/service/config.tpl.json +14 -0
  193. package/core/service/index.js +100 -0
  194. package/core/service/script.tpl.js +25 -0
  195. package/core/store/config.tpl.json +26 -0
  196. package/core/store/index.js +1755 -0
  197. package/core/store/script.tpl.js +22 -0
  198. package/core/store/sql.js +1464 -0
  199. package/core/system/config.tpl.json +18 -0
  200. package/core/system/index.js +312 -0
  201. package/core/system/script.tpl.js +77 -0
  202. package/core/view/config.tpl.json +14 -0
  203. package/core/view/index.js +91 -0
  204. package/core/view/script.tpl.js +20 -0
  205. package/core/zone/bat/index.js +725 -0
  206. package/core/zone/config.tpl.json +54 -0
  207. package/core/zone/index.js +614 -0
  208. package/core/zone/script.tpl.js +10 -0
  209. package/core/zone/zone_bat.js +136 -0
  210. package/core//345/237/272/347/261/273/346/250/241/345/235/227/346/270/205/345/215/225.md +24 -0
  211. package/index.js +17 -314
  212. package/os.js +57 -0
  213. package/package.json +60 -58
  214. package/server.js +598 -0
  215. package/README.en.md +0 -36
  216. package/conf.json +0 -3
  217. package/core/base/mqtt/index.js +0 -1107
  218. package/core/base/mqtt/lib.js +0 -40
  219. package/core/base/web/index.js +0 -243
  220. package/core/com/api/com.json +0 -4
  221. package/core/com/api/drive.js +0 -668
  222. package/core/com/api/index.js +0 -108
  223. package/core/com/api/oauth.js +0 -158
  224. package/core/com/api/script.js +0 -32
  225. package/core/com/app/README.md +0 -3
  226. package/core/com/app/com.json +0 -4
  227. package/core/com/app/config.tpl.json +0 -16
  228. package/core/com/app/drive.js +0 -309
  229. package/core/com/app/index.js +0 -211
  230. package/core/com/app/script.js +0 -155
  231. package/core/com/cmd/com.json +0 -4
  232. package/core/com/cmd/config.tpl.json +0 -66
  233. package/core/com/cmd/drive.js +0 -513
  234. package/core/com/cmd/index.js +0 -354
  235. package/core/com/cmd/old/5w2h.js +0 -54
  236. package/core/com/cmd/old/drive.js +0 -423
  237. package/core/com/cmd/script.js +0 -11
  238. package/core/com/component/README.md +0 -3
  239. package/core/com/component/com.json +0 -4
  240. package/core/com/component/component.html +0 -16
  241. package/core/com/component/drive.js +0 -197
  242. package/core/com/component/index.js +0 -312
  243. package/core/com/component/script.js +0 -18
  244. package/core/com/db/com.json +0 -4
  245. package/core/com/db/drive.js +0 -1160
  246. package/core/com/db/index.js +0 -176
  247. package/core/com/event/com.json +0 -4
  248. package/core/com/event/drive.js +0 -133
  249. package/core/com/event/index.js +0 -345
  250. package/core/com/event/script.js +0 -26
  251. package/core/com/eventer/com.js +0 -477
  252. package/core/com/eventer/com.json +0 -4
  253. package/core/com/middleware/com.js +0 -153
  254. package/core/com/middleware/com.json +0 -4
  255. package/core/com/middleware/config.tpl.json +0 -8
  256. package/core/com/middleware/script.js +0 -9
  257. package/core/com/mqtt/com.json +0 -4
  258. package/core/com/mqtt/drive.js +0 -600
  259. package/core/com/mqtt/index.js +0 -572
  260. package/core/com/mqtt/mm_mqtt.js +0 -330
  261. package/core/com/mqtt/script.js +0 -604
  262. package/core/com/msg/com.js +0 -296
  263. package/core/com/msg/com.json +0 -4
  264. package/core/com/nav/com.json +0 -4
  265. package/core/com/nav/config.tpl.json +0 -75
  266. package/core/com/nav/drive.js +0 -549
  267. package/core/com/nav/index.js +0 -182
  268. package/core/com/nav/tpl/admin_pc/page_form.vue +0 -180
  269. package/core/com/nav/tpl/admin_pc/page_view.vue +0 -124
  270. package/core/com/nav/tpl/dev_pc/page_default.vue +0 -247
  271. package/core/com/nav/tpl/dev_pc/page_type.vue +0 -313
  272. package/core/com/nav/tpl/home_pc/page_default.vue +0 -234
  273. package/core/com/nav/tpl/home_pc/page_form.vue +0 -137
  274. package/core/com/nav/tpl/home_pc/page_list.vue +0 -234
  275. package/core/com/nav/tpl/home_pc/page_nav.vue +0 -221
  276. package/core/com/nav/tpl/home_pc/page_type.vue +0 -234
  277. package/core/com/nav/tpl/home_pc/page_view.vue +0 -125
  278. package/core/com/nav/tpl/home_phone/page_channel.vue +0 -234
  279. package/core/com/nav/tpl/home_phone/page_default.vue +0 -234
  280. package/core/com/nav/tpl/home_phone/page_form.vue +0 -137
  281. package/core/com/nav/tpl/home_phone/page_nav.vue +0 -237
  282. package/core/com/nav/tpl/home_phone/page_type.vue +0 -234
  283. package/core/com/nav/tpl/home_phone/page_view.vue +0 -125
  284. package/core/com/nav/viewmodel.js +0 -296
  285. package/core/com/param/drive.js +0 -366
  286. package/core/com/param/index.js +0 -80
  287. package/core/com/param/script.js +0 -12
  288. package/core/com/param/test.js +0 -98
  289. package/core/com/plugin/README.md +0 -3
  290. package/core/com/plugin/com.json +0 -4
  291. package/core/com/plugin/config.tpl.json +0 -26
  292. package/core/com/plugin/drive.js +0 -536
  293. package/core/com/plugin/index.js +0 -259
  294. package/core/com/plugin/script.js +0 -213
  295. package/core/com/rpc/com.json +0 -4
  296. package/core/com/rpc/drive.js +0 -160
  297. package/core/com/rpc/index.js +0 -87
  298. package/core/com/rpc/rpc.js +0 -118
  299. package/core/com/socket/com.json +0 -4
  300. package/core/com/socket/config.tpl.json +0 -14
  301. package/core/com/socket/drive.js +0 -403
  302. package/core/com/socket/index.js +0 -62
  303. package/core/com/socket/script.js +0 -42
  304. package/core/com/sql/drive.js +0 -1087
  305. package/core/com/sql/index.js +0 -83
  306. package/core/com/sql/script.js +0 -48
  307. package/core/com/static/com.json +0 -4
  308. package/core/com/static/drive.js +0 -220
  309. package/core/com/static/index.js +0 -149
  310. package/core/com/static/script.js +0 -28
  311. package/core/com/task/com.json +0 -4
  312. package/core/com/task/drive.js +0 -403
  313. package/core/com/task/index.js +0 -110
  314. package/core/com/task/script.js +0 -37
  315. package/core/com/timer/com.js +0 -217
  316. package/core/com/timer/com.json +0 -4
  317. package/core/com/tpl/com.js +0 -19
  318. package/core/com/tpl/com.json +0 -4
  319. package/lib/actions.js +0 -50
  320. package/lib/base.js +0 -361
  321. package/lib/com.js +0 -29
  322. package/lib/ref.js +0 -121
  323. package/middleware/mqtt_base/index.js +0 -10
  324. package/middleware/mqtt_base/middleware.json +0 -10
  325. package/middleware/performance/index.js +0 -151
  326. package/middleware/performance/middleware.json +0 -16
  327. package/middleware/security_audit/index.js +0 -549
  328. package/middleware/security_audit/middleware.json +0 -48
  329. package/middleware/security_headers/index.js +0 -487
  330. package/middleware/security_headers/middleware.json +0 -45
  331. package/middleware/waf/index.js +0 -348
  332. package/middleware/waf/middleware.json +0 -10
  333. package/middleware/waf_ddos/index.js +0 -520
  334. package/middleware/waf_ddos/middleware.json +0 -38
  335. package/middleware/waf_ip/index.js +0 -379
  336. package/middleware/waf_ip/middleware.json +0 -49
  337. package/middleware/waf_xss/index.js +0 -269
  338. package/middleware/waf_xss/middleware.json +0 -18
  339. package/middleware/web_after/index.js +0 -33
  340. package/middleware/web_after/middleware.json +0 -9
  341. package/middleware/web_base/index.js +0 -90
  342. package/middleware/web_base/middleware.json +0 -9
  343. package/middleware/web_before/index.js +0 -27
  344. package/middleware/web_before/middleware.json +0 -9
  345. package/middleware/web_check/index.js +0 -28
  346. package/middleware/web_check/middleware.json +0 -9
  347. package/middleware/web_main/index.js +0 -28
  348. package/middleware/web_main/middleware.json +0 -9
  349. package/middleware/web_proxy/index.js +0 -37
  350. package/middleware/web_proxy/middleware.json +0 -9
  351. package/middleware/web_render/index.js +0 -87
  352. package/middleware/web_render/middleware.json +0 -9
  353. package/middleware/web_socket/index.js +0 -34
  354. package/middleware/web_socket/middleware.json +0 -9
  355. package/middleware/web_static/index.js +0 -115
  356. package/middleware/web_static/middleware.json +0 -9
  357. /package/{core/com → com}/api/README.md +0 -0
  358. /package/{core/com → com}/db/README.md +0 -0
  359. /package/{core/com → com}/event/README.md +0 -0
  360. /package/{core/com → com}/mqtt/README.md +0 -0
  361. /package/{core/com → com}/nav/README.md +0 -0
  362. /package/{core/com → com}/nav/tpl/admin_pc/page_channel.vue +0 -0
  363. /package/{core/com → com}/nav/tpl/admin_pc/page_default.vue +0 -0
  364. /package/{core/com → com}/nav/tpl/admin_pc/page_lang.vue +0 -0
  365. /package/{core/com → com}/nav/tpl/admin_pc/page_nav.vue +0 -0
  366. /package/{core/com → com}/nav/tpl/admin_pc/page_table.vue +0 -0
  367. /package/{core/com → com}/nav/tpl/admin_pc/page_type.vue +0 -0
  368. /package/{core/com → com}/nav/tpl/dev_pc/page_channel.vue +0 -0
  369. /package/{core/com → com}/nav/tpl/dev_pc/page_config.vue +0 -0
  370. /package/{core/com → com}/nav/tpl/dev_pc/page_form.vue +0 -0
  371. /package/{core/com → com}/nav/tpl/dev_pc/page_nav.vue +0 -0
  372. /package/{core/com → com}/nav/tpl/dev_pc/page_table.vue +0 -0
  373. /package/{core/com → com}/nav/tpl/home_pc/page_channel.vue +0 -0
  374. /package/{core/com → com}/nav/tpl/home_phone/page_list.vue +0 -0
  375. /package/{core/com → com}/param/README.md +0 -0
  376. /package/{core/com/cmd → com/pendant}/README.md +0 -0
  377. /package/{core/com → com}/socket/README.md +0 -0
  378. /package/{core/com → com}/sql/README.md +0 -0
  379. /package/{core/com → com}/static/README.md +0 -0
  380. /package/{core/com → com}/task/README.md +0 -0
@@ -0,0 +1,18 @@
1
+ {
2
+ // 名称
3
+ "name": "${name}",
4
+ // 标题
5
+ "title": "${title || 'XXX系统'}",
6
+ // 描述
7
+ "description": "${description || 'XXX系统介绍'}",
8
+ // 主文件
9
+ "main": "${main || 'index.js'}",
10
+ // 状态 0:禁用 1:启用
11
+ "state": 1,
12
+ // 排序,越小越靠前
13
+ "sort": 100,
14
+ // 逻辑列表
15
+ "logics": [],
16
+ // 工厂
17
+ "factorys": []
18
+ }
@@ -0,0 +1,312 @@
1
+ const { Drive } = require('mm_machine');
2
+
3
+ /**
4
+ * 系统基类
5
+ * 负责处理包含特定组件组合的实体
6
+ * 实现业务逻辑和游戏规则
7
+ */
8
+ class System extends Drive {
9
+ static config = {
10
+ // 系统名称
11
+ 'name': 'default',
12
+ // 系统标题
13
+ 'title': '系统',
14
+ // 系统描述
15
+ 'description': '系统基类,负责处理实体和组件的业务逻辑',
16
+ // 系统执行优先级
17
+ 'sort': 100,
18
+ // 依赖逻辑列表
19
+ 'logics': [],
20
+ // 依赖工厂列表
21
+ 'factorys': []
22
+ };
23
+
24
+ /**
25
+ * 构造函数
26
+ * @param {object} config 配置参数
27
+ * @param {object} parent 父对象
28
+ */
29
+ constructor(config, parent) {
30
+ super({ ...System.config, ...config || {} }, parent);
31
+
32
+ // 消息通道
33
+ this._channel = null;
34
+ // 工厂
35
+ this._factory = {};
36
+ // 逻辑管理
37
+ this._logic = {};
38
+ // 实体管理
39
+ this._entityAdmin = null;
40
+ // 系统是否启用
41
+ this._enabled = true;
42
+ }
43
+ }
44
+
45
+ /**
46
+ * 预设
47
+ */
48
+ System.prototype._preset = function () {
49
+ // 系统执行优先级
50
+ this._priority = this.config.sort || 100;
51
+ };
52
+
53
+ /**
54
+ * 获取模板目录
55
+ * @returns {string} 模板目录
56
+ */
57
+ System.prototype.getTplDir = function () {
58
+ return __dirname;
59
+ };
60
+
61
+ /**
62
+ * 初始化系统核心
63
+ * @param {object} channel 消息通道
64
+ * @param {object} eventer 事件管理器
65
+ * @param {object} logger 日志管理器
66
+ */
67
+ System.prototype._initCore = async function (channel, eventer, logger) {
68
+ if (logger) {
69
+ this.setLogger(logger);
70
+ }
71
+ if (eventer) {
72
+ this.getEventer = function () {
73
+ return eventer;
74
+ };
75
+ }
76
+ // 初始化依赖项
77
+ if (channel) {
78
+ this._channel = channel;
79
+ this._factory = channel.factory;
80
+ this._logic = channel.logic;
81
+ this._entityAdmin = channel.entityAdmin;
82
+ }
83
+ // 检测依赖
84
+ this._checkDeps();
85
+ };
86
+
87
+ /**
88
+ * 检测依赖
89
+ */
90
+ System.prototype._checkDeps = function () {
91
+ let { logics, factorys } = this.config;
92
+ logics = logics || [];
93
+ factorys = factorys || [];
94
+ // 检查逻辑依赖
95
+ for (let logic of logics) {
96
+ if (!this._logic[logic]) {
97
+ throw new Error(`系统 ${this.config.name} 依赖逻辑 ${logic} 未注册`);
98
+ }
99
+ }
100
+ // 检查工厂依赖
101
+ for (let factory of factorys) {
102
+ if (!this._factory[factory]) {
103
+ throw new Error(`系统 ${this.config.name} 依赖工厂 ${factory} 未注册`);
104
+ }
105
+ }
106
+ };
107
+
108
+ /**
109
+ * 获取系统依赖的逻辑对象
110
+ * @param {string} name 逻辑名称
111
+ * @returns {object} 逻辑对象
112
+ */
113
+ System.prototype.getLogic = function (name) {
114
+ return this._logic[name];
115
+ };
116
+
117
+ /**
118
+ * 获取系统依赖的工厂对象
119
+ * @param {string} name 工厂名称
120
+ * @returns {object} 工厂对象
121
+ */
122
+ System.prototype.getFactory = function (name) {
123
+ return this._factory[name];
124
+ };
125
+
126
+ /**
127
+ * 获取系统实体对象
128
+ * @param {string} name 实体名称
129
+ * @returns {object} 实体对象
130
+ */
131
+ System.prototype.getEntity = function (name) {
132
+ return this._entityAdmin.get(name);
133
+ };
134
+
135
+ /**
136
+ * 获取系统执行优先级
137
+ * @returns {number} 优先级数值
138
+ */
139
+ System.prototype.getPriority = function () {
140
+ return this._priority;
141
+ };
142
+
143
+ /**
144
+ * 设置系统执行优先级
145
+ * @param {number} priority 优先级数值
146
+ */
147
+ System.prototype.setPriority = function (priority) {
148
+ // 参数校验
149
+ if (typeof priority !== 'number') {
150
+ throw new TypeError('优先级必须是数字');
151
+ }
152
+
153
+ this._priority = priority;
154
+ };
155
+
156
+ /**
157
+ * 检查系统是否启用
158
+ * @returns {boolean} 是否启用
159
+ */
160
+ System.prototype.isEnabled = function () {
161
+ return this.status === 'running' && this._enabled;
162
+ };
163
+
164
+ /**
165
+ * 启用系统
166
+ */
167
+ System.prototype.enable = function () {
168
+ this._enabled = true;
169
+ // 触发系统启用事件
170
+ this.emitEvent('system_enable', {
171
+ system_name: this.config.name,
172
+ timestamp: Date.now()
173
+ });
174
+ };
175
+
176
+ /**
177
+ * 禁用系统
178
+ */
179
+ System.prototype.disable = function () {
180
+ this._enabled = false;
181
+ // 触发系统禁用事件
182
+ this.emitEvent('system_disable', {
183
+ system_name: this.config.name,
184
+ timestamp: Date.now()
185
+ });
186
+ };
187
+
188
+ /**
189
+ * 系统更新方法
190
+ * 子类必须重写此方法来实现具体的业务逻辑
191
+ * @param {number} delta_time 时间增量(毫秒)
192
+ */
193
+ System.prototype.update = function (delta_time) {
194
+ if (typeof delta_time !== 'number') {
195
+ throw new TypeError('时间增量必须是数字');
196
+ }
197
+
198
+ // 触发系统更新事件
199
+ this.emitEvent('system_update', {
200
+ system_name: this.config.name,
201
+ delta_time: delta_time,
202
+ timestamp: Date.now()
203
+ });
204
+
205
+ let entities = this._entityAdmin.getByComponents(this.config.components);
206
+
207
+ for (let entity of entities) {
208
+ this._processEntity(entity, delta_time);
209
+ }
210
+ };
211
+
212
+ /**
213
+ * 处理单个实体
214
+ * 子类必须重写此方法来实现具体的实体处理逻辑
215
+ * @param {object} entity 实体对象
216
+ * @param {number} delta_time 时间增量(毫秒)
217
+ */
218
+ System.prototype._processEntity = function (entity, delta_time) {
219
+ // 参数校验
220
+ if (!entity || typeof entity !== 'object') {
221
+ throw new TypeError('实体对象必须是有效的对象');
222
+ }
223
+
224
+ if (typeof delta_time !== 'number') {
225
+ throw new TypeError('时间增量必须是数字');
226
+ }
227
+
228
+ // 默认实现:记录实体处理
229
+ this.log('info', `系统 ${this.config.name} 处理实体 ${entity.entity_id}`);
230
+ };
231
+
232
+ /**
233
+ * 获取系统处理的实体数量
234
+ * @returns {number} 实体数量
235
+ */
236
+ System.prototype.getEntityCount = function () {
237
+ let entities = this._entityAdmin.getByComponents(this.config.components);
238
+ return entities.length;
239
+ };
240
+
241
+ /**
242
+ * 系统清理方法
243
+ * 子类可以重写此方法来实现系统清理逻辑
244
+ */
245
+ System.prototype.cleanup = function () {
246
+ // 默认实现:记录系统清理
247
+ this.log('info', `系统 ${this.config.name} 清理完成`);
248
+ };
249
+
250
+ /**
251
+ * 获取系统状态信息
252
+ * @returns {object} 系统状态信息
253
+ */
254
+ System.prototype.getStatus = function () {
255
+ return {
256
+ name: this.config.name,
257
+ title: this.config.title,
258
+ description: this.config.description,
259
+ enabled: this._enabled,
260
+ priority: this._priority,
261
+ entitys: this.getEntityCount()
262
+ };
263
+ };
264
+
265
+ /**
266
+ * 处理实体事件
267
+ * 子类可以重写此方法来实现事件处理逻辑
268
+ * @param {string} event_type 事件类型
269
+ * @param {object} event_data 事件数据
270
+ * @param {object} entity 实体对象
271
+ */
272
+ System.prototype.handleEvent = function (event_type, event_data, entity) {
273
+ // 参数校验
274
+ if (typeof event_type !== 'string') {
275
+ throw new TypeError('事件类型必须是字符串');
276
+ }
277
+
278
+ if (typeof event_data !== 'object' || Array.isArray(event_data)) {
279
+ throw new TypeError('事件数据必须是对象');
280
+ }
281
+
282
+ if (!this.isEnabled()) {
283
+ return;
284
+ }
285
+
286
+ this.log('info', `系统 ${this.config.name} 处理事件 ${event_type} 实体 ${entity ? entity.entity_id : 'null'}`);
287
+ };
288
+
289
+ /**
290
+ * 系统预更新方法
291
+ * 在系统更新前调用,用于准备数据
292
+ * @param {number} delta_time 时间增量(毫秒)
293
+ */
294
+ System.prototype.preUpdate = function (delta_time) {
295
+ if (typeof delta_time !== 'number') {
296
+ throw new TypeError('时间增量必须是数字');
297
+ }
298
+ };
299
+
300
+ /**
301
+ * 系统后更新方法
302
+ * 在系统更新后调用,用于清理数据
303
+ * @param {number} delta_time 时间增量(毫秒)
304
+ */
305
+ System.prototype.postUpdate = function (delta_time) {
306
+ if (typeof delta_time !== 'number') {
307
+ throw new TypeError('时间增量必须是数字');
308
+ }
309
+ };
310
+
311
+ // 导出模块
312
+ exports.System = System;
@@ -0,0 +1,77 @@
1
+ /**
2
+ * 游戏系统
3
+ */
4
+ module.exports = {
5
+ /**
6
+ * 初始化
7
+ * @param {object} world 游戏世界类
8
+ * @param {object} eventer 事件总线
9
+ * @returns {Promise<void>}
10
+ */
11
+ async _init(world, eventer) {
12
+ // this.log('debug', `初始化!`);
13
+ // 监听事件写在这
14
+ // eventer.on('事件名', this._方法名);
15
+ },
16
+ /**
17
+ * 启动
18
+ */
19
+ async _start() {
20
+ // this.log('debug', `启动!`);
21
+ },
22
+ /**
23
+ * 停止
24
+ */
25
+ async _stop() {
26
+ this.log('debug', `停止!`);
27
+ },
28
+ /**
29
+ * 销毁
30
+ * @param {...any} args 参数列表
31
+ */
32
+ async _destroy(...args) {
33
+ this.log('debug', `销毁!`, { args });
34
+ },
35
+ /**
36
+ * 更新,用于游戏循环
37
+ */
38
+ async update() {
39
+ // 循环更新的代码逻辑写在这
40
+ await this.main();
41
+ },
42
+ /**
43
+ * 主要逻辑
44
+ * @param {...any} args 参数列表
45
+ */
46
+ async main(...args) {
47
+ // 主要代码写在这
48
+ this.log('debug', `主要逻辑被调用`, { args });
49
+ },
50
+ /**
51
+ * 怪物死亡(示例方法,可以删除)
52
+ * @param {object} monster 怪物
53
+ */
54
+ onMonsterDeath(monster) {
55
+ // ✅ System 调用 Factory 创建实体
56
+ this.factory.effect.createExpOrb(
57
+ this.world,
58
+ monster.getComponent('position'),
59
+ monster.getComponent('monster').exp_reward
60
+ );
61
+
62
+ // 随机掉落物品
63
+ if (Math.random() < 0.3) {
64
+ this.factory.factory.item.createRandomDrop(
65
+ this.world,
66
+ monster.getComponent('monster').loot_table
67
+ );
68
+ }
69
+
70
+ // 处理死亡特效
71
+ this.factory.effect.createDeathEffect(
72
+ this.world,
73
+ monster.getComponent('position'),
74
+ monster.getComponent('monster').death_effect_type
75
+ );
76
+ }
77
+ };
@@ -0,0 +1,14 @@
1
+ {
2
+ // 名称
3
+ "name": "${name}",
4
+ // 标题
5
+ "title": "${title || '视图'}",
6
+ // 描述
7
+ "description": "${description || '视图'}",
8
+ // 主文件
9
+ "main": "${main || 'index.js'}",
10
+ // 状态 0:禁用 1:启用
11
+ "state": 1,
12
+ // 排序,越小越靠前
13
+ "sort": 100
14
+ }
@@ -0,0 +1,91 @@
1
+ const {
2
+ Drive
3
+ } = require('mm_machine');
4
+ const Tpl = require('mm_tpl');
5
+
6
+ /**
7
+ * 渲染视图基类
8
+ * 渲染html或消息模板
9
+ */
10
+ class View extends Drive {
11
+ static config = {
12
+ // 视图名称
13
+ name: 'default',
14
+ // 视图目录
15
+ dir: './static/template',
16
+ };
17
+ /**
18
+ * 构造函数
19
+ * @param {object} config 配置参数
20
+ * @param {object} parent 父对象
21
+ */
22
+ constructor(config, parent) {
23
+ super({ ...View.config, ...config || {} }, parent);
24
+ }
25
+ }
26
+
27
+ /**
28
+ * 预设
29
+ */
30
+ View.prototype._preset = function () {
31
+ // 模板引擎
32
+ this._tpl = $.tpl;
33
+ };
34
+
35
+ /**
36
+ * 获取模板目录
37
+ * @returns {string} 模板目录
38
+ */
39
+ View.prototype.getTplDir = function () {
40
+ return __dirname;
41
+ };
42
+
43
+ /**
44
+ * 初始化核心
45
+ * @param {object} logger 日志管理器
46
+ */
47
+ View.prototype._initCore = async function (logger) {
48
+ // 初始化依赖项
49
+ if (logger) {
50
+ this.setLogger(logger);
51
+ }
52
+ this._tpl = new Tpl();
53
+ };
54
+
55
+ /**
56
+ * 渲染html模板
57
+ * @param {string} html 模板
58
+ * @param {object} model 数据模型
59
+ * @returns {string} 渲染结果
60
+ */
61
+ View.prototype.render = async function (html, model) {
62
+ // 参数校验
63
+ if (!html || typeof html !== 'string') {
64
+ throw new TypeError('模板必须是非空字符串');
65
+ }
66
+ if (model && typeof model !== 'object') {
67
+ throw new TypeError('数据模型必须是对象');
68
+ }
69
+ // 渲染模板
70
+ return this._tpl.render(html, model);
71
+ };
72
+
73
+ /**
74
+ * 渲染html模板文件
75
+ * @param {string} file 模板文件
76
+ * @param {object} model 数据模型
77
+ * @returns {string} 渲染结果
78
+ */
79
+ View.prototype.view = async function (file, model) {
80
+ // 参数校验
81
+ if (!file || typeof file !== 'string') {
82
+ throw new TypeError('模板文件必须是非空字符串');
83
+ }
84
+ if (model && typeof model !== 'object') {
85
+ throw new TypeError('数据模型必须是对象');
86
+ }
87
+ // 渲染模板文件
88
+ return this._tpl.view(file, model);
89
+ };
90
+
91
+ exports.View = View;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * 渲染器
3
+ */
4
+ module.exports = {
5
+ /**
6
+ * 初始化
7
+ * @returns {Promise<void>}
8
+ */
9
+ async _init() {
10
+ this.log('debug', '初始化!');
11
+ },
12
+ /**
13
+ * 主要逻辑
14
+ * @param {...any} args 参数列表
15
+ */
16
+ async main(...args) {
17
+ this.log('debug', 'view main 被调用', { args });
18
+ // 主要代码写在这
19
+ }
20
+ };