xazax Posted January 5, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 427 Reputation: 123 Joined: 11/17/11 Last Seen: December 31, 2022 Share Posted January 5, 2012 Meyraw made a nice modification on how to handle packets. You can check his project there: http://code.google.com/p/eathenanext/ The main point is, the packets are no longer edited with WFIFO macros, but they are structs, with members just like in Aegis. With such system it would be easier to add support for newer clients, since we can dump those structs from Aegis leaked pdbs ( In his code as far as I remember the struct and member names does not match with aegis' ones, maybe it would worth name matching.). Adding this would be a great deal of work, breaking lot of existing patches, and probably would be better to develop it in a different branch. Opinions? 2 Quote Link to comment Share on other sites More sharing options...
Sirius_White Posted January 6, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 32 Reputation: 17 Joined: 11/20/11 Last Seen: January 20, 2015 Share Posted January 6, 2012 Generally pro. I started this about three times, but never got beyond the basic movement / chat packets. It's indeed a lot work, but worth the effort. The eathenanext approach looks fine, definitely better than the current clif.c code. I didn't read through the entire code though, just briefly skimmed it. We currently support about six different spawn packets, possibly more by now. Structs make it easier to figure out the final packet structure, but the code remains either redundant (one function per packet in each version) or scrambled with #ifdefs (one function per semantic packet [walk, spawn, ...]). In the process we should definitely merge packet_db versions and PACKETVER. It doesn't make any sense to support dozens of client versions, but have one fixed server protocol. PACKET(PKT_MC_CUTIN) pkt = { PKT_MC_CUTIN }; This is weird. 1 Quote Link to comment Share on other sites More sharing options...
Kenpachi Posted January 6, 2012 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 764 Reputation: 220 Joined: 11/14/11 Last Seen: November 19, 2020 Share Posted January 6, 2012 Even though my opinion isn't relevant in this discussion I want to support this idea because this will make it easier for noobs like me to get into this part of Athena. 1 Quote Link to comment Share on other sites More sharing options...
KeyWorld Posted January 6, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 379 Reputation: 304 Joined: 11/10/11 Last Seen: December 2, 2014 Share Posted January 6, 2012 If the cleanup (remove old packets) concern some of the packets send from client to the server, let me know ! roBrowser currently send the oldest possible packet to server to get a maximum compatibility with all pserver (since ea/ra support almost all packets send from client to server). Well I should improve robrowser to send the packet related to the detected packetver... Good idea through, It's more clean than the current version of clif.c. Same thing with chrif.c and login/map-serv. 2 Quote Link to comment Share on other sites More sharing options...
GodLesZ Posted January 6, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 186 Reputation: 51 Joined: 11/14/11 Last Seen: January 21, 2015 Share Posted January 6, 2012 Totally agree with the clean up. But we should talk about the implementation of the new struct. As @Sirius_White pointed out, PACKET(PKT_MC_CUTIN) pkt = { PKT_MC_CUTIN }; This is weird. it is. roBrowser currently send the oldest possible packet to server to get a maximum compatibility with all pserver (since ea/ra support almost all packets send from client to server). Well I should improve robrowser to send the packet related to the detected packetver... Well, nice idea but failed by design Quote Link to comment Share on other sites More sharing options...
xazax Posted January 6, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 427 Reputation: 123 Joined: 11/17/11 Last Seen: December 31, 2022 Author Share Posted January 6, 2012 I agree that, it is a bit wierd, and I think, meyraws codes are great reference, but maybe we could come up with something that is even cleaner based on that idea . Quote Link to comment Share on other sites More sharing options...
Ind Posted January 6, 2012 Group: Members Topic Count: 169 Topics Per Day: 0.03 Content Count: 1260 Reputation: 750 Joined: 11/19/11 Last Seen: April 11, 2013 Share Posted January 6, 2012 Totally agree with the clean up. But we should talk about the implementation of the new struct. As @Sirius_White pointed out, PACKET(PKT_MC_CUTIN) pkt = { PKT_MC_CUTIN }; This is weird. it is. +1 Quote Link to comment Share on other sites More sharing options...
CalciumKid Posted January 7, 2012 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 257 Reputation: 253 Joined: 11/29/11 Last Seen: February 21, 2014 Share Posted January 7, 2012 PACKET(PKT_MC_CUTIN) pkt = { PKT_MC_CUTIN }; This is weird. Redundant code is redundant. Quote Link to comment Share on other sites More sharing options...
Brian Posted January 7, 2012 Group: Members Topic Count: 75 Topics Per Day: 0.02 Content Count: 2223 Reputation: 593 Joined: 10/26/11 Last Seen: June 2, 2018 Share Posted January 7, 2012 Is any of the "clif cleanup" Ai4rei is committing in eAthena related to this idea? I have not merged eAthena r15051-r15058 and I'm wondering if I should proceed or wait. r15051 r15052 r15053 r15054 r15055 - already merged r15056 r15057 r15058 Quote Link to comment Share on other sites More sharing options...
xazax Posted January 7, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 427 Reputation: 123 Joined: 11/17/11 Last Seen: December 31, 2022 Author Share Posted January 7, 2012 Well, it is not related. Ai4rei did small cleanups, you can merge them, they are ok I think. This one would be about a bigger rewrite how to handle packets. Quote Link to comment Share on other sites More sharing options...
Gepard Posted January 7, 2012 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 392 Reputation: 285 Joined: 12/19/11 Last Seen: January 23, 2022 Share Posted January 7, 2012 I'm totally in favor of improving or even rewriting client interface. But we really need to think it over thoroughly, how we're gonna do this. Quote Link to comment Share on other sites More sharing options...
Ind Posted November 15, 2012 Group: Members Topic Count: 169 Topics Per Day: 0.03 Content Count: 1260 Reputation: 750 Joined: 11/19/11 Last Seen: April 11, 2013 Share Posted November 15, 2012 reviving this as proposed over #rdev; One thing I'm highly uncomfortable with: PACKET(PKT_MC_CUTIN) pkt = { PKT_MC_CUTIN }; since each packet version has its own code and length/sizes for its vars (e.g. check the inventory_list1/2/3 crap) I'd like to propose we use the packet id in the name e.g. struct packet_0xf5 { char offset[5]; uint32 item_oid; }; .... func() { struct packet_0xf5 p; p.item_oid = 1; } Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.