Rodney Pilgrim

Results 12 comments of Rodney Pilgrim

The errors are related to #18, as the OpenDIS7 considers `utils/*.cpp` as source files that include some OpenDIS 6 (`dis6/*.h`) files. I was able to build the OpenDIS7 with the...

If you want to bundle all the Utils into OpenDIS7 library, then the above isn't a suitable solution as it only includes the DataStream class, and Endian enum that it...

`#include ` seems to be the convention in all the dis6 & dis7 cpp files at the moment. I'm assuming convention is actually from the initial XML generated cpp as...

I had a fiddle, an was able to come up with the below example - using the DataStream DIS util: ```c++ #include "DataStream.h" #include "OneByteChunk.h" using namespace DIS; #include #include...

Yeah, you're change for a new data type looks like it should work. Yeah, they seem pretty interchangeable, although skim reading this Wikipedia article [here](https://en.wikipedia.org/wiki/Marshalling_(computer_science)) suggests there might be subtle...

DISCLAIMER: I haven't looked at the XML specification, I've only worked on the generated C++ However, I believe the C++ Code was generated with [XMLPG (XML Multi-Language Protocol Generator)](https://github.com/open-dis/xmlpg), from...

I had a quick look earlier today, but I'll give it a proper look over the weekend :+1:

I wrote this script which seems to make the right changes, but thought it might be best to wait for the current PRs to be resolved first, committing and making...

Took a little bit of fiddling to get it right, but I think this replaces and delete all the necessary lines. I realised the the previous script missed a few...

Turns out I had @kurtsansom's #44 PR checked out when writing the script, so I'd prefer to wait until that is completed, and then merged. But I might try rewrite...