summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2023-03-03TPlySmth: Add `TPlySmth`mrb0nk500
2023-03-03TPlyClientConfig: Add `TPlyClientConfig`mrb0nk500
2023-03-03TPlyCharData: Add `TPlyCharData`mrb0nk500
2023-03-03TPlyInventory: Add `TPlyInventory`mrb0nk500
2023-03-03TPlyDispData: Add `TPlyDispData`mrb0nk500
2023-03-03TMath: Add `TMath`mrb0nk500
2023-03-03TArray: Add `at()`, and `at_as()`mrb0nk500
2023-03-03TTcpSocket: Revert `TTcpSocket: Make most of the virtuals inline`mrb0nk500
Caused unwanted inlining in some cases.
2023-03-03TProtocol: Start work on `TProtocol`'s header filemrb0nk500
Still need to add the rest of the classes, and structs that're used, as well as the functions for all of these, but it's a start.
2023-03-03TTcpSocket: Make most of the virtuals inlinemrb0nk500
This is to make the function order match better.
2023-03-03TMenuList, TPlyGuildCardTag: Add constructorsmrb0nk500
2023-03-02TPlyGuildCardTag: Fix compilation error in `_assign()`mrb0nk500
Also makes it simpler too.
2023-03-02TMenuList, TPlyGuildCardTag: Actually match both classesmrb0nk500
Didn't realize that `TMenuList`'s `operator=` was actually implicit.
2023-03-02TPlyGuildCardTag: Make variable members private, and add accessors formrb0nk500
them
2023-03-02TPlyGuildCardTag: Put everything upto `guildcard_number` in a unionmrb0nk500
This will be needed for later.
2023-03-02TMenuListEntry: Make the entry arrays use `TArray`, instead of amrb0nk500
standard C array
2023-03-02TArray: Make `{,fast_}fill_with()` type genericmrb0nk500
2023-03-02TArray: Add `size_as()`mrb0nk500
2023-03-01TTcpSocket: Make `some_stub()` a member functionmrb0nk500
Forgot that it's actually a member function.
2023-03-01TTcpSocket: Make `stat()` return a `short`mrb0nk500
oof, this caused `send(u8 *)` to not match, but making it return a `short` caused it to suddenly match.
2023-02-28TTcpSocket: Start work on `TTcpSocket`mrb0nk500
I've done most of it, still have to do `test_connection()`, and `open()`.
2023-02-28macros: Add `WEAK_FUNC`mrb0nk500
2023-02-28TSocket: Use the correct return type for all the virtualsmrb0nk500
2023-02-28TSocket: Make the flag helpers publicmrb0nk500
2023-02-28TSocket: Rename `stat` -> `stat_val`mrb0nk500
2023-02-28macros: Make the getter of `PRIVATE_MEMBER_ACCESSORS` return amrb0nk500
reference, and add `PRIVATE_MEMBER_ACCESSORS_NON_REF`
2023-02-28PSOV3EncryptionTCP: Add, and fully match `PSOV3EncryptionTCP`mrb0nk500
That was way easier than I expected, I thought it'd take a lot longer than this.
2023-02-28PSOV3Encryption: Rename `encrypt()` -> `init()`mrb0nk500
Shoutouts to fuziqersoftware for pointing this out.
2023-02-28PSOV3Encryption: Add, and fully match `PSOV3Encryption`mrb0nk500
Boy, that took way too long to match, mainly due to regalloc issues in `update_stream()`.
2023-02-27TArray: Add some extra functionsmrb0nk500
2023-02-26TSocket: Start work on, and match most of `TSocket`mrb0nk500
Still need to implement, and match `resolve_domain()`, but it's a good starting point for decompiling the netcode.
2023-02-26TArray: Add `TArray` template classmrb0nk500
This is a convenience class, to make working with arrays alot easier, but without hurting our chances of matching.
2023-02-26TObject: Make `all_parents_unqueued_for_destruction()` return an intmrb0nk500
rather than a bool This is needed for matching other stuff.
2023-02-26pso/macros: Add `EXTERN_OBJECT_NAME` macromrb0nk500
2023-02-26pso/macros: Add getters/setters macrosmrb0nk500
This'll come in handy later.
2023-02-25TMenuList: Add `TMenuList`, and everything else that's needed to get itmrb0nk500
working I feel this is a good starting point for working on the protocol related code.
2023-02-16TMainTask: Complete `TMainTask.cpp`mrb0nk500
2023-02-16TObject: Add `toggle_flag_3()`mrb0nk500
2023-02-16TObject: Add `toggle_flags()`mrb0nk500
2023-02-16macros: Add new `TL_{}_OBJECTS` xmacrosmrb0nk500
This will be needed for later.
2023-02-12TObject: Move private functions to the topmrb0nk500
2023-02-12context: Update context to match current statemrb0nk500
2023-02-12TObject: Correct typos in `remove_parent()`mrb0nk500
That was so cursed, how did I not see this earlier.
2023-02-12TMainTask: Swap `{dis,}allow` around in `DISALLOW_OR_ALLOW_CHILD`mrb0nk500
oof, just noticed this mistake, forgot that it was flipped in the original.
2023-02-12TObject: Add `m_` prefix to non-function members, and remove `get_` frommrb0nk500
getter function names
2023-02-12TObject: Make non-function members private, and add getters, and settersmrb0nk500
2023-02-11TMainTask: Make the function order match the originalmrb0nk500
2023-02-11TMainTask: Add, and match `func_80228bbc()`mrb0nk500
2023-02-11TMainTask: Add, and match `func_80228c44()`mrb0nk500
oof, my system crashed in the middle of builing `TMainTask.cpp`, causing it to corrupt the source file, meaning I had to redo this function again. Thank god I'm using version control.
2023-02-11TMainTask: Add, and match `func_80228dbc()`mrb0nk500