I
I
Illarion2016-01-10 15:08:42
Programming
Illarion, 2016-01-10 15:08:42

How do you spell pseudo AI in games?

Hello, I'm interested in this question. Can anyone recommend literature or other source in which this issue would be considered in detail? In a sense, it is clear that each genre and each game has its own features of its implementation, but I would like to read about the general principles of constructing and implementing pseudo AI.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
S
Sergey, 2016-01-10
@Jovli

In general, read about the minimax principle.
You must:
1. Describe the play space, what you can and can't do.
2. describe the possible actions of the bot (move to the right, left, shoot, etc.)
3. describe the function that evaluates the current situation on the field (taking into account the position and state of all players on the field, or only that part known to the bot)
4. Guided by using the minimax principle to choose the best move for the bot at the current moment.
5. Optimize the process, taking into account the fact that you will have a combinatorial explosion of possibilities.

A
Alexander, 2016-01-14
@fuliozor

Quite an interesting talk about AI in the game "Stalker"
https://www.youtube.com/watch?v=z3z9ozS5PMQ

A
Alexander Aksentiev, 2016-01-11
@Sanasol

habrahabr.ru/company/mosigra/blog/270529

X
xmoonlight, 2016-01-11
@xmoonlight

habrahabr.ru/company/intel/blog/265679
www.lki.ru/text.php?id=4097

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question