#
Technology
In the Wild game, we extensively utilize AI technology. Your teammate may be an AI player, and your competitors may also be AI players.
In terms of micro-level operations, these AI players primarily rely on behavior tree technology, which meets real-time requirements. For coordination and cooperation among multiple AI players, the LLM coordinator reads the states of AI players within a small team as well as the map conditions to formulate strategies for the team. Each AI player serves as a tactical executor.
#
How can an LLM understand the battlefield situation in a shooting game?
We can simplify the information into an ASCII matrix, for example:
. . . . . . .
. E . . . . . (E=Enemy)
. . # # # . . (#=Wall)
. . A . . . . (A=Ally A)
. B . C . . . (B,C=Ally B,C)
Pass this ASCII matrix to the LLM as text. For the LLM, it serves as both "visual information" (it can understand relative positions) and "text" (processing is extremely fast, much faster than images). Prompt:"A, B, C are my team. E is enemy. # is wall. Give tactical orders."