00487F80 >/$ 5>PUSH EBX ; Function: TApp.StartSingleGame(GameStartInfo* gameStartInfo)
004893B0 >/$ 8>SUB ESP,12C ; Function: TethysGame.StartGame(GameStartInfo* gameStartInfo):bool bSuccess
I'm pretty sure that in the original campaigns the AI is just given all technologies, so it wouldn't come up normally. I only found this out through my own curiosity and experimentation.Up until you said that, I was wondering "How does that affect us?"
You probably wouldn't have any easy access to saved games, and you'd also probably have to write all the network code to go from one mission to the next without disconnecting. I have no idea how hard that might be.Could accomplish it in a different manner I suppose. Just have some mission that reads in some data to decide what "mission" to start on with proper settings and etc. The data could be stored by way of some generic file (missions are DLLs so just read and write a file using the standard APIs) obviously making sure that data is being written and loaded symmetrically on all machines.
It is neat to think how close to a human player the AI could be made to function as.
3) If a campaign loses a player, the other players can wait or go on without him/her. But once they do that the campaign becomes 2P only, so the lost player can't come back.Or any new player gets the standard kit (techs, units, resources)
1) How do we re-checksum the map and techtree? Can we trick OP2 into doing it for us, or will we have to do it manually? Though we'll probably need to do our own checksum for save files anyways, so yeah. (Speaking of, do we want to "encrypt/protect" save files, or should we just rely on the honor system?)You can call ResManager::ChecksumStream to checksum a file. However it would be completely up to the mission to compare the checksums and abort if they didn't match (OP2 only automatically checksums the actual DLL that is first loaded; it wouldn't be aware of this situation where you are loading another DLL from within the first). The biggest hurdle to solve is sending arbitrary data to other players in the game when you want.
2) Rather than figure out who's who based on their names, which can and do change (I'm looking at you Arklon/Tankn0[size=0] [/size]0b/Duke Nukem) we do something like:
- Assign each player an ID.
- Save only the local player's ID.
- When starting the next game, OP2 "asks" for each player's saved ID.
- Now that it knows what belong to who, OP2 gives players their techs/resources/units/etc back.
We can also build in a check to ensure two people don't have the same ID and refuse to load if they do since it means they're
3) If a campaign loses a player, the other players can wait or go on without him/her. But once they do that the campaign becomes 2P only, so the lost player can't come back.