Results 170 comments of Iliyas Jorio

I personally wouldn't bother with a true NetSprockets implementation. There's very little that really depends on NetSprockets features, so I'd just port those parts to the networking API of our...

I have pushed a work-in-progress branch called "[net](https://github.com/jorio/CroMagRally/tree/net)" if you're interested. It works, but only on a LAN. Just sending inputs and having each peer simulate the world in parallel...

I'm happy that you guys are enjoying the port! Huge shoutout to Pangea for making this possible! It's great to see your initiatives in packaging up the game as well...

@Smashman4 It fails to create an SDL window, so it's not getting very far at all. Try adding `puts(SDL_GetError());` [before the "throw" here](https://github.com/jorio/CroMagRally/blob/master/Source/Main.cpp#L202) so we can get more info about...

Yes, it was possible in the original game, but I chose not to allow it because it made it more cumbersome to implement other features I wanted to add (4-player...

Hi @johannesjh, > You can already omit packages that you don't want to be installed (e.g., python-lxml because it is already present in the target platform) My use case for...

`Oid.hex` is among the deprecated features that were [removed in 1.15.0](https://github.com/libgit2/pygit2/blob/master/CHANGELOG.md). You can use `str(oid)` instead.

The source code is here for you to toy with – that’s what GitHub is for. The license basically says you can’t profit off the game, and your derivative works...

Also for what it's worth, I wrote a BG3D-to-OBJ converter a while back ([it's in this very repo](https://github.com/jorio/CroMagRally/blob/master/rawdata/extractbg3d.py)). Exporting data **back** to a format that the game understands would be...

Hmm, this looks like a libgit2 issue on Windows. `str(Path(...))` returns a "native" path that uses `\` as the directory separator. But `git_repository_hashfile` doesn't recognize this path as being part...