I think flat calls are just fine.
Most, if not all, languages that can compile DLL's are capable of calling a normal procedure inside another module.
COM is pretty sick for most people to have to use (unless the language supports it easily, i.e. Visual Basic).
Yes, most definitely a shared DLL. (I have already begun the project - the op2ext.dll is loaded into the game's address space and thus is available, from version 1.3.2 forward).
I can't say for certain about the open source. (If it stays within this group, it's perfectly fine).
Remember that the extension DLL will contain other things than just interfaces to the game. For example, the NAT fix, and later on things to allow mods (like controlling the VOL start-up list) will be inside the DLL, and this is the type of stuff that not everyone should be able to get at.
(Yes, I know the people here aren't gonna start going through this code and changing it, as some of it is critical).
I don't consider this to be a full replacement for the OP2 set of functions, instead I consider it to be an EXTENSION.
I wouldn't even necessarily consider using classes (though that would be nice), instead using something like UnitGetColor(Unit refUnit); and it returns the value. That might be messy tho, it might be easier and more elegant to use inheritance, eg
class IUnit : public Unit
As far as features go, here are some ideas I've had:
(This might not make a lot of sense to some of you yet, since Hooman and I haven't discussed it with you much yet)
- (Big) Easy way to produce CommandPackets and inject them into the engine.
- Read data from the loaded in techtree, and possibly modify them.
- Change colors on text, etc (in the command pane. This can easily be done)
- Hook certain parts of the game engine to obtain certain data for the mission.
- Better sound control system. (Play your own music and effect files)
- (sorta big) A mod system where the mission can specify what things it wants to patch, and the extension does it for them. The extension can deny modifications to certain parts of the game like the networking code or other things that shouldn't be changed. This could include changing VOLs loaded, etc. The extension would replace the original data after the mission finishes execution.
- Ability to read game variables like version, etc.
- More precise control over triggers, groups, etc.
Anything else you want?
Hooman and I can get a basic project going soon, most likely.