-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build without VS2017 #6
Comments
GladNet references are from this nuget feed https://www.myget.org/F/hellokitty/api/v3/index.json so you may not be able to get GladNet or the latest sceneject without adding that feed to VS. I think it's in the NuGet config which I thought VS looked at when populating feeds. I haven't tried it with anything below VS2017. I'll try a clean clone later today to see what could be wrong but other than that I can only say I use VS2017 and I'm not sure of the differences. |
Oh it completely escaped me! You will not be able to build the full solution because a dll in the lib folder is missing. We started to use Odin Inspector but it's not opensource and requires a license. We can't redistribute all the DLLs required to build the solution anymore. It wasn't a decision made lightly but Odin replaced an old library I wanted to stop maintaining, GladBehaviour, and it improved the ability to serialize to the Unity inspector and allowed me to work with generics abit more. So that could be another reason for the failures! |
Yeah, would be very nice to build the project only using CLI. This way it could be developed even on non-windows platforms, without VS2017. There are at least 2 possible ways I see to solve Odin Inspector DLL issue:
|
I have considered a dummy dll that can be committed. That's a reasonable solution. The resulting compiled assemblies won't be usable in Unity3D though if that is done. Also, as of recently there has been a major pivot in the project. To reduce scope, increase chance of adoption and tap into the vast domain knowledge the PSO community developers and reverse engineers have I've decided to start laying the groundwork for a custom PSOBB client. I've already started working with someone very knowledgeable in this area and we've been putting together something rather quickly. It's more greenfield and collaboration has and will be a key goal. Starting from day 1 this time. https://github.com/HelloKitty/Booma.Proxy |
Nice! |
@igogrek Ah the beauty of this reduction in scope is that we will not be building a PSOBB server. Compatibility with Tethella, and by extension Ultima and Ephenia, is the main goal. We're only going to focus on building a client. However you could build a server with the libraries being implemented right now. There just isn't a use for another PSOBB server implementation I think. A new client unlocks more possibilities. |
You're welcome to contribute. I accept PRs. Requires a lot of reading of Sylverant or Tethella or existing domain specific knowledge. Check out the packet csprojs to see how they're created. The main effort is going towards creating DTOs for all the packets. Lots of wide open space for that. Refactoring can always be done once when the main structure has been established into things like nested objects, enums or etc. So contributing the structures for any packets can be helpful. It's late so I have to sleep though, hope we end up collabing! |
I wish I could just jump in but in the absence of docs it's going to be quite problematic. Found the run instructions for the server setup and will try to do so later. At least Sylverant's code seem to be commented, but, again, it's hard to go just from the sources, without seeing the full picture. |
The best documentation I can provide is: https://sylverant.net/wiki/index.php/Category:PSO_Server_Protocol It's incomplete and contains DC, PC, GC and BB information. Aside from that I use Sylervant's PSOBB login/patch server implementation: https://github.com/Sylverant Tethella doesn't have a recent public release, and I don't blame Sodaboy for that decision, but there is an old Tethella source here https://github.com/justnoxx/psobb-tethealla but it's less helpful than Sylverant I think. Also Ephenia's version of Tethella uses a different encryption than the standard blowfish from the original PSOBB. Going from these source and Soly's understanding of the client is all we have to go on. I rely on Soly for dumping packets since I don't have a working proxy nor do I run my own server to dump the incoming packets. We have a working implementation for the patchserver encryption, check out the repo, and we have a probably working blowfish implementation for the login/ship server encryption. It's a lot, but we're slowing working through it all. |
@igogrek I've tried my hand at generating some documentation for packets with a tool I wrote. Looking for feedback on it if there is more meaningful information you thing should or could be produced automatically to help potential contributors or people looking to understand the project. |
Oh, that's https://sylverant.net/wiki/index.php/Category:PSO_Server_Protocol exactly what I was looking for! https://github.com/HelloKitty/Booma.Proxy/tree/master/docs looks like it should. Few questions here:
Some answers to these questions may be useful for future contributors, so wiki page with this sort of information would be nice. FAQ/overview or something. With all of the great links and general idea you've wrote here already. But to actually work with this, I think we need some kind of debug/test tool. |
Sylverant is incomplete for PSOBB. It seemed like the goal had been crossplatform play, similar to the old PSO PC days where you could play with DC players, I'm working on generating enumerations for the login and ship opcodes. Once we have those then the doc gen tool can produce similar files too. I don't have those, but I'm waiting for a login server dump from my other collaborator to start putting one together.
I currently don't do debugging nor do we yet run tests using realworld dumps. I want to, but it takes up development time. In a perfect world we would have test cases covering that all that all real world data could be serialized and then deserialized to and from the DTOs. Its just implementing these things have a cost. One we're not 100% sure yet has value since there is so much work to be done already. Right now I rely on Soly to dump interactions between the client and server. I have written up a simple test client you can find in the Tests subdir that will connect to non-Ephenia servers. It's not ideal but it's the biggest bank for the least buck. |
Hi.
Great that you were able to refactor all of the different DLL's into one solution.
It's much cleaner and managable now.
The question: is it possible to build without VS2017? I'm talking about stuff like VScode for example.
Because currently I've tried running
build.bat
and had numeroues issues, like:And than
I assume that the problem is most likely related to Nuget or something (and it works differently from VS2017). Or maybe build.bat is out of date or something?
The text was updated successfully, but these errors were encountered: