Procedural object generation and unique identification

Posted by 2080 on Game Development See other posts from Game Development or by 2080
Published on 2012-10-01T13:38:12Z Indexed on 2012/10/01 15:54 UTC
Read the original article Hit count: 259

My question relates to procedural content generation and data management of the emerging objects in a database.

I assume a networked game, with a server-client model. Unspecified objects in the game world are generated while the game is running with procedural algorithms (for example perlin noise). The players (/clients) can modify the properties of these objects, but have to notify the server of these changes. How could this communication address unique objects, so that both the server and the client know of which object they are speaking?

Not only the inner properties of the objects can differ, but also visible, such as the position. When the player wants to select one of these objects the game has to find out the id - does anyone know which methods or algorithms can accomplish that?

© Game Development or respective owner

Related posts about game-design

Related posts about networking