Official Everybody Edits Forums

Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?

You are not logged in.

#1 2015-02-19 16:41:42, last edited by EuadeLuxe (2015-02-20 01:01:06)

EuadeLuxe
Member
Joined: 2015-02-18
Posts: 12

[BotSDK] PacketDispatcher for easier Bot-Development

Introduction

Hello to all of you out here,

after quite some time I went back to creating bots for EE and soon got into it again. Actually though, I have been disgusted of writing the "message" handlers (as PlayerIO calls them) all by branching for different types of messages and always having to know the order of the messages internally in order to get at the information I want. Therefore I sat down and wrote a small system which might be useful to some of you. Please excuse me, if something similiar already exists, but as I said I just returned to creating bots so i'm not up-to-date when it comes to that.

Below you will find a quick overview of the system and a link to the GitHub-Repository.

----------------------------------------------------------------------------------------------------------------

The Basic Concepts

The basic concept of "MessageLib" (that's what it's called like) is that all messages sent to EE or received from EE are wrapped into classes. Each class may then either be an inbound packet (i.e. a packet which you receive) or an outbound packet (which you may send). Using the Connection object which probably all of you know you are given an extension method called Send(...) which will effectively do all the serialization into the actual Message object for you, i.e. there's no difference in whether or decide to use messages directly or use MessageLib. For inbound packets things even get a bit nicer as MessageLib provides you with something I call a "Dispatcher". Whenever you acquire a new connection object you may hand it over to the dispatcher which will from now on respond to all received messages and dispatch them around all your listeners. I hear you saying: "But what da heck are listeners?" Well, arguably it'd be best, if I'd just show you a little example:

using MessageLib;

namespace MyHyperCoolBot
{
    public class MainClass
    {
        public static void Main()
        {
            // We assume that these instances we're already initialized:
            PlayerIOClient.Connection connection;

            // Here we may now create our dispatcher:
            PacketDispatcher dispatcher = new PacketDispatcher();
            dispatcher.AddConnection( connection );
            dispatcher.RegisterListener( new MyPacketListener() );
        }
    }


    public class MyPacketListener : IPacketListener
    {
        [PacketHandler]
        public void onInit ( Packets.In.PacketInit init )
        {
            // Do something awesome with our packet:
            string worldKey = init.Derot;
        }
    }
}

In this example the onInit(...) method of our listener will be invoked whenever an "init" message is received. Why is that? Because the packet dispatcher does all the work of deserializing the messages appropriately for you and then invokes any methods of listeners registered to it which fulfill the following conditions:

  1. The method possesses an PacketHandler attribute

  2. The method takes exactly one parameter which is an instantiatable type implementing the IInboundPacket interface

This effectively means that you may treat whatever EE sends to you as some kind of event which may be handled by any object you like. Another example for getting notified whenever a user takes the crown:

[PacketHandler]
public void onPlayerCrown( Packets.In.PacketPlayerCrown crown )
{
    // We might do all kinds of things here. crown.UserID is the ID of the user who has taken the crown.
}

For sending a packet back to EE we would do something like this:

connection.Send( new Packets.Out.PacketPlayerTrophy() );

which would give our bot the silver crown. The library comes with a whole bunch of predefined packet classes. If you find them to be wrong or not working please let me now, or even fix them yourself. If you are missing In- / Outbound packets you may tell me as well or you may even write them yourself. Just have a look at how it's done in the library itself, it's really not that hard. Just don't forget to make your packet known to the PacketDispatcher by doing:

dispatcher.RegisterPacket( typeof( MyVeryAwesomePacket() ) );

----------------------------------------------------------------------------------------------------------------

Conclusion

To me this system has proven its value as it allowed me to decentralize my work a lot more than registering message handlers all the time. Also it allows for much cleaner code in my opinion - that must not be true in yours as well (!).

Finally, here's the link to the project's GitHub-Repository, enjoy: https://github.com/EuadeLuxe/MessageLib

Best regards,
EuadeLuxe.


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

C++, C#, Java, PHP, JavaScript and Python programmer
Enjoys developing all day
Don't believe it? Then verify me here, https://keybase.io/verify, and here: https://www.gommehd.net/members/blackypaw.32820/ (open the Informations tab and you'll find another PGP signature)
-----BEGIN PGP SIGNATURE-----
Version: Keybase OpenPGP v2.0.46
Comment: https://keybase.io/crypto

wsBcBAABCgAGBQJWCo8vAAoJEG4qS86NYi+iL1kH/Aq8bRm7tjZAqeBE4YBR0bJx
ao40xBbFsQ1KjZUnUgQosFP66H0JqlGmrJnyseyBLM+xccrkXapXN/T6csKTTzMy
dFV6i55+Jn/r1Y45+7yZHSYYZeG+OsFRin+Yvj0R69U6fuGLzDhfd9DFFlj0ORUw
qScy5/A0v+F9mLi+4a/fp9io4oF2kHiqzFNGCy4TueKgU5N+Um8UvhkNonLvRyvD
kOpjym8co4VLEDLfTVJgQAUhmmwW1NHvyaDDj9hjW4ERmhuX7ITwtrVdyAG6VhJB
DEN9SjkSTbGnvWepCv2xnqKmvXwyCXrds4d6Tt/wOz+794Optk8paYT/IO2RM2w=
=nW2J
-----END PGP SIGNATURE-----

Offline

#2 2015-02-19 17:40:12, last edited by Zumza (2015-02-19 17:41:07)

Zumza
Member
From: root
Joined: 2015-02-17
Posts: 4,662

Re: [BotSDK] PacketDispatcher for easier Bot-Development

Why not use CupCake?


Warning!
This user has been found guilty by The Committee of Truth of using honesty, and reminding people of the past, without permission and outside of the allotted timeframes.

I’ve been asked if I’m ChatGPT5.
The answer is no.
I hope this helps! Let me know if you have any other questions.

Everybody edits, but some edit more than others

Offline

#3 2015-02-19 20:07:22

Tomahawk
Forum Mod
From: UK
Joined: 2015-02-18
Posts: 2,859

Re: [BotSDK] PacketDispatcher for easier Bot-Development

Zumza wrote:

Why not use CupCake?

Why not leave cupcake on its shelf and consider fresh software?

~ Though in my opinion this code looks a little lengthier than hardcoding all the handling.


One bot to rule them all, one bot to find them. One bot to bring them all... and with this cliché blind them.

Offline

#4 2015-02-19 20:12:52

Hexagon
Member
Joined: 2015-04-22
Posts: 1,213

Re: [BotSDK] PacketDispatcher for easier Bot-Development

I'm interested in this library (PacketDispatcher); have you done any benchmarks? I'd like to see how it compares to other frameworks such as CupCake and PlayerIO.

Offline

#5 2015-02-19 22:18:13

EuadeLuxe
Member
Joined: 2015-02-18
Posts: 12

Re: [BotSDK] PacketDispatcher for easier Bot-Development

It's quite hard to get any reasonable benchmarks for it as there are several points one should consider about any kind of information posted here:

  1. The number of handlers which will be invoked once a packet is received will change dynamically. Therefore invocation times will ultimately sum up.

  2. The more payload a packet contains the longer it will need in order to be deserialized. As the length of packets varies greatly (from the init packet to the god packet for example) there's no really "consistent" time a deserialization of the raw message data will take

But still I've benchmarked the time it takes to deserialize different messages into their respective packet wrapper classes and summed them up here:

  • 205 x PacketPlayerCollectCoin: 00:00:00.0041107 => 0.02005ms per Packet

  • 200 x PacketPlayerBrickPlace: 00:00:00.0056117 => 0.02848ms per Packet

  • 36 x PacketPlayerChat (each one contained exactly four characters): 00:00:00.0009833 => 0.02731ms per Packet

Still, these numbers will barely be of any use to you as you should do not have to worry about them in any existing system.

I do not now how the dispatcher compares against CupCake or similiar as I did not try them out yet (as I mentioned in the introduction, I just recently began to develop bots again). In fact a comparison against PlayerIO would be useless as the packet dispatcher still uses the PlayerIO.Message object internally. The only place where the packet dispatcher might be faster then using PlayerIO message handlers directly is, when it comes to the point that multiple handlers deserialize the very same message multiple times. Still, these are very vague predictions.


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

C++, C#, Java, PHP, JavaScript and Python programmer
Enjoys developing all day
Don't believe it? Then verify me here, https://keybase.io/verify, and here: https://www.gommehd.net/members/blackypaw.32820/ (open the Informations tab and you'll find another PGP signature)
-----BEGIN PGP SIGNATURE-----
Version: Keybase OpenPGP v2.0.46
Comment: https://keybase.io/crypto

wsBcBAABCgAGBQJWCo8vAAoJEG4qS86NYi+iL1kH/Aq8bRm7tjZAqeBE4YBR0bJx
ao40xBbFsQ1KjZUnUgQosFP66H0JqlGmrJnyseyBLM+xccrkXapXN/T6csKTTzMy
dFV6i55+Jn/r1Y45+7yZHSYYZeG+OsFRin+Yvj0R69U6fuGLzDhfd9DFFlj0ORUw
qScy5/A0v+F9mLi+4a/fp9io4oF2kHiqzFNGCy4TueKgU5N+Um8UvhkNonLvRyvD
kOpjym8co4VLEDLfTVJgQAUhmmwW1NHvyaDDj9hjW4ERmhuX7ITwtrVdyAG6VhJB
DEN9SjkSTbGnvWepCv2xnqKmvXwyCXrds4d6Tt/wOz+794Optk8paYT/IO2RM2w=
=nW2J
-----END PGP SIGNATURE-----

Offline

#6 2015-02-19 22:56:29

lrussell
Member
From: Saturn's Titan
Joined: 2015-02-15
Posts: 843
Website

Re: [BotSDK] PacketDispatcher for easier Bot-Development

Processor has been working on CupCake 2, which will use his new BotBits platform (https://github.com/Yonom/BotBits).
Either way, the more the merrier!

Offline

#7 2015-02-19 23:19:30

Processor
Member
Joined: 2015-02-15
Posts: 2,246

Re: [BotSDK] PacketDispatcher for easier Bot-Development

BotBits is basically this without the bloat that CupCake offers, but yeah, nothing wrong with yet another bot framework. Welcome back to EE!

EDIT: I just gave you permission to post links. //forums.everybodyedits.com/img/smilies/smile (Usually you have to make your first 10 posts before you are allowed to use links, because of all the spam bots out there)


I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.

Offline

#8 2015-02-19 23:23:04

Hexagon
Member
Joined: 2015-04-22
Posts: 1,213

Re: [BotSDK] PacketDispatcher for easier Bot-Development

EuadeLuxe wrote:

It's quite hard to get any reasonable benchmarks for it as there are several points one should consider about any kind of information posted here:

  1. The number of handlers which will be invoked once a packet is received will change dynamically. Therefore invocation times will ultimately sum up.

  2. The more payload a packet contains the longer it will need in order to be deserialized. As the length of packets varies greatly (from the init packet to the god packet for example) there's no really "consistent" time a deserialization of the raw message data will take

But still I've benchmarked the time it takes to deserialize different messages into their respective packet wrapper classes and summed them up here:

  • 205 x PacketPlayerCollectCoin: 00:00:00.0041107 => 0.02005ms per Packet

  • 200 x PacketPlayerBrickPlace: 00:00:00.0056117 => 0.02848ms per Packet

  • 36 x PacketPlayerChat (each one contained exactly four characters): 00:00:00.0009833 => 0.02731ms per Packet

Still, these numbers will barely be of any use to you as you should do not have to worry about them in any existing system.

I do not now how the dispatcher compares against CupCake or similiar as I did not try them out yet (as I mentioned in the introduction, I just recently began to develop bots again). In fact a comparison against PlayerIO would be useless as the packet dispatcher still uses the PlayerIO.Message object internally. The only place where the packet dispatcher might be faster then using PlayerIO message handlers directly is, when it comes to the point that multiple handlers deserialize the very same message multiple times. Still, these are very vague predictions.

Thank you for your time to produce these benchmarks. If it does use PlayerIO messages in the background, I assume that it should be not much different than Cupcake or another alternative in terms of speed. However, because this interface exposes more lower level functions, it may be possible to be more efficient.

Offline

#9 2015-02-19 23:28:17, last edited by Processor (2015-02-19 23:29:23)

Processor
Member
Joined: 2015-02-15
Posts: 2,246

Re: [BotSDK] PacketDispatcher for easier Bot-Development

https://i.yonom.org/nn0 Pretty similar code bases! //forums.everybodyedits.com/img/smilies/tongue

There should be no noticeable performance difference between this and CupCake / BotBits when parsing messages. Not that it matters anyway //forums.everybodyedits.com/img/smilies/tongue Anything less than 10ms is good enough for EE.


I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.

Offline

#10 2015-02-20 01:04:32

EuadeLuxe
Member
Joined: 2015-02-18
Posts: 12

Re: [BotSDK] PacketDispatcher for easier Bot-Development

@Processor: Yeah, but how should something be different if it's explicitely defined by EE //forums.everybodyedits.com/img/smilies/tongue ?  And yes, I totally agree with you, that performance shouldn't be the greatest of all concerns when it comes to writing bots for EE. Currently for getting into it I'm developing the "Game of Life" for EE just to get used to it again and in fact performance of deserialization is not really the big problem there.


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

C++, C#, Java, PHP, JavaScript and Python programmer
Enjoys developing all day
Don't believe it? Then verify me here, https://keybase.io/verify, and here: https://www.gommehd.net/members/blackypaw.32820/ (open the Informations tab and you'll find another PGP signature)
-----BEGIN PGP SIGNATURE-----
Version: Keybase OpenPGP v2.0.46
Comment: https://keybase.io/crypto

wsBcBAABCgAGBQJWCo8vAAoJEG4qS86NYi+iL1kH/Aq8bRm7tjZAqeBE4YBR0bJx
ao40xBbFsQ1KjZUnUgQosFP66H0JqlGmrJnyseyBLM+xccrkXapXN/T6csKTTzMy
dFV6i55+Jn/r1Y45+7yZHSYYZeG+OsFRin+Yvj0R69U6fuGLzDhfd9DFFlj0ORUw
qScy5/A0v+F9mLi+4a/fp9io4oF2kHiqzFNGCy4TueKgU5N+Um8UvhkNonLvRyvD
kOpjym8co4VLEDLfTVJgQAUhmmwW1NHvyaDDj9hjW4ERmhuX7ITwtrVdyAG6VhJB
DEN9SjkSTbGnvWepCv2xnqKmvXwyCXrds4d6Tt/wOz+794Optk8paYT/IO2RM2w=
=nW2J
-----END PGP SIGNATURE-----

Offline

EuadeLuxe1424390672474926

Board footer

Powered by FluxBB

[ Started around 1743878838.2309 - Generated in 0.082 seconds, 12 queries executed - Memory usage: 1.56 MiB (Peak: 1.74 MiB) ]