omf2097 / openomf

One Must Fall 2097 Remake
http://www.openomf.org
MIT License
362 stars 35 forks source link

Add a naive implementation of hashmap resizing function #320

Closed katajakasa closed 8 years ago

katajakasa commented 8 years ago
  1. Creates a new hashmap bucket list
  2. Rehashes nodes from the old list and adds them to the new list
  3. frees up old list and sets the new list as hashmap main bucket list.

Also adds the autoresize stuff.

This can and should be optimized!