ivan1993spb / snake-server

Snake-Server is a pure Go implementation of the famous arcade game 🐍
https://snakeonline.xyz
MIT License
33 stars 3 forks source link

Rewrite engine.Map to use a map of Dot structures #129

Open ivan1993spb opened 3 years ago

ivan1993spb commented 3 years ago

Rewrite engine.Map to use a map of Dot structures:

field map[Dot]*unsafe.Pointer

Instead of

fields [][]*unsafe.Pointer
ivan1993spb commented 3 years ago

The change has been proved to be inefficient on Golang go1.14.15