1) Split the map class into the bits that are permanent and the bits that need to be remembered (e.g. that you remember there was a lair there, you remember who owned a city there and what size it was last time you saw it). This is what I've been doing up until now, and its now finished.
2) While working on (1), I've noticed that a lot of the locking complexity of the entire game all comes down to one routine, the one that checks if a spell applies to a unit, because this gets very complicated for combat area effect spells (like Prayer) for checking the location of the unit (if the unit is attacking, it isn't actually in the same map location as the Prayer spell!) I've devised a clever way around this that will simplify a lot of things and should reduce the amount of locking the game has to do... which should speed it up.
3) Move where the permanent parts of the map are stored.
4) On the server, have one copy of the map per player, so it remembers what each player has seen.
...and that's just to get the data structures how they need to be - I still need to actually WRITE the Fog of War code :) But I feel like I have a plan now, and know how all the changes will fit together, so I'm happy. From the start I didn't attempt to get everything right first time, because my experience from working on other games is that its unrealistic to think that you can look far enough ahead to know what "right" is. Its only once you've got a fair portion of the game written that you really gain an appreciation for how all the data structures should have been designed in the first place. So instead I just took into account that I knew this was going to happen sooner or later, and tried to keep things as flexible as I could, so when I did realise I needed to change some real fundamental core parts of the code, I'd have no trouble doing so. So that's where I am now... going back right to the start of MoM IME (literally - I'm redesigning how map coordinates are stored... it doesn't get more low level than that) and now going back and doing everything "right" :)
Its just a lot to work through, and is going to take a while. Just wanted to do a quick post so nobody starts thinking "no posts = MoM IME is dead"

Implode.