-
Content Count
9 -
Joined
-
Last visited
-
Days Won
3
Mindstorm38 last won the day on March 4
Mindstorm38 had the most liked content!
Community Reputation
15 NoobAbout Mindstorm38
- Birthday April 26
Basic information
-
Gender
Мужчина
-
City
France
-
Interests
Rust programming for World of Tanks
Contacts
-
Nick
Mindstorm38_
Recent Profile Visitors
440 profile views
-
I made huge progress in the understanding of the different applications and communication between base/cell and client app. I'm now refactoring the net module to avoid much boilerplate when I'll be implementing all elements of the client app. Once this is done, I'll be able to implement the different types of entities (scripts/entities.xml) and their properties/methods.
-
I've made a lot of progress on network protocol, I can achieve a full login process and redirect the client to the base app server. I'm now working on authentication to the base app server, and only then it will be possible to work on garage synchronization. Also made a bit of reverse engineering and DLL injection to easily dump unencrypted packet, also thanks to a recent GitHub repository of a 2014 version of Open Source BigWorld (https://github.com/v2v3v4/BigWorld-Engine-14.4.1).
-
Hi! I've been working for a while now on a Rust (lang) crate that provides many codecs for WG's resources. The project is split in two projects, the library and the CLI (which is new and currently not complete at all). The library contains a "net" (network) module (feature-gated) which partially implement the backbone of the network protocol, which I have partially reverse engineered as of this writing. The module currently fully support the login app and is planned to support client/base/cell apps in the future. In order to support client/base/cell apps, all entities will be defined and imported from entities.xml and their configuration. Repo: https://github.com/mindstorm38/wg-toolkit-rs Branch for network development: https://github.com/mindstorm38/wg-toolkit-rs/tree/improve-network This project was inspired in the first place by SkepticalFox's work on compiled spaces. Thanks for reading!
-
Has network protocol been documented?
Mindstorm38 replied to Mindstorm38's topic in Modding General Discussion
Thank you @yepev for the link. I also found https://github.com/v2v3v4/BigWorld-Engine-2.0.1, which is really old (2012, when WG acquired the engine) and likely not the same at all today. But the protocol core principle could be the same today (edit: fully obsolete). I will try to play with the login process later to guess how much the protocol have changed, I'll also compare it with the disassembled '.exe'. EDIT1: I first thought these sources were obsolete, but I can actually find some structure looking like "LogOnParams" or "ServerConnection" (src/lib/connection) from my disassembly of WoT 1.14. -
Has network protocol been documented?
Mindstorm38 replied to Mindstorm38's topic in Modding General Discussion
Ok so I assume there is nothing documented? -
Has network protocol been documented?
Mindstorm38 replied to Mindstorm38's topic in Modding General Discussion
@SkepticalFox I would like to make a backend crate in Rust, the goal is not to make a server (with all the complicated things like physics), but rather to define packet structures and provides a packet codec. It has no use case for now, but who knows in the future? -
Hello, I'm wondering if there was any attempt to document the network protocol used by WoT? I know that there is a WIP mod being developed to make a fake server, but I can't find any "centralized" or community effort to revert the protocol.