Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: nslay on August 21, 2005, 07:07 PM

Title: FreeBSD binary chat client
Post by: nslay on August 21, 2005, 07:07 PM
If I committed such a port or hosted it...does this violate the TOS with blizzard?

Edit: This isn't skywing's Binary Chat...the "binary" refers to its ability to login into bnet via their games' binary protocols
Title: Re: FreeBSD binary chat client
Post by: Newby on August 21, 2005, 11:34 PM
Uh, yes.

tmp wrote slackchat if anybody is interested: www.x0r.ca/slackchat

All that is necessary is a modification of the Makefile, and it works wonders. I use it on my shell!@
Title: Re: FreeBSD binary chat client
Post by: Topaz on August 21, 2005, 11:59 PM
x0r? [email protected]?
Title: Re: FreeBSD binary chat client
Post by: nslay on August 22, 2005, 01:07 AM
Quote from: Newby on August 21, 2005, 11:34 PM
Uh, yes.

tmp wrote slackchat if anybody is interested: www.x0r.ca/slackchat

All that is necessary is a modification of the Makefile, and it works wonders. I use it on my shell!@

Thanks, going to read his source to learn :)
I was hoping to make this chatclient exactly the same as ChatterBot was in its day...
I was thinking of 3 optional interfaces, gtk interface, ncurses, and no interface, all of which the user can choose.
I'll certainly credit tmp for the learning...
Title: Re: FreeBSD binary chat client
Post by: GameSnake on August 22, 2005, 09:19 AM
Quick question: do must bots that work with Linux also work on BSD/Unix-like platforms?
Title: Re: FreeBSD binary chat client
Post by: Yegg on August 22, 2005, 09:37 AM
Quote from: GameSnake on August 22, 2005, 09:19 AM
Quick question: do must bots that work with Linux also work on BSD/Unix-like platforms?
I don't think so. They may have to be compiled for the necessary system.
Title: Re: FreeBSD binary chat client
Post by: nslay on August 22, 2005, 10:38 AM
Quote from: GameSnake on August 22, 2005, 09:19 AM
Quick question: do must bots that work with Linux also work on BSD/Unix-like platforms?
Well, most *BSDs have linux emulation and can run linux binaries pretty well, however, for native support, the code must be compiled.  Not all Linux source is compatible with *BSD.  While building ports that may have been designed for Linux, you might notice that FreeBSD applies patches to the source.
Title: Re: FreeBSD binary chat client
Post by: Tazo on August 22, 2005, 08:18 PM
Newby, how do I modify the makefile to make it FreeBSD compatible?
Title: Re: FreeBSD binary chat client
Post by: Joe[x86] on August 22, 2005, 09:56 PM
Quote from: Topaz on August 21, 2005, 11:59 PM
x0r? [email protected]?

No, thats my email address.
Title: Re: FreeBSD binary chat client
Post by: Newby on August 22, 2005, 10:29 PM
I forget what modification it is, but you type something like:

Quotecd src && mv ./*.o include && gcc main.o include/conf.o include/cdkey.o include/checkver.o include/packet.o include/isock.o -o ../slackchat -lncurses

After you type "make" and it errors out to finish compiling it.
Title: Re: FreeBSD binary chat client
Post by: Tazo on August 22, 2005, 11:54 PM
@slackchat:
No color support on this terminal!
lol
Title: Re: FreeBSD binary chat client
Post by: mynameistmp on August 23, 2005, 02:21 AM
Quote
I was thinking of 3 optional interfaces, gtk interface, ncurses, and no interface, all of which the user can choose.

The way I setup my ncurses interface is pretty complicated, you'll want to investigate the Forms library. When I wrote slackchat's interface I didn't have access to the internet, so I had no external references. I had to implement an entire command line, including arrow keys, backspace, etc. Time consuming.

If you're looking for something like a gtk interface, I'd write a plugin for xchat. I've thought about doing this a few times but havn't really had the time to do it. Feel free to just rip all of slackchat's login code (which is fairly simple to do, by design). All of the interface design is done for you by xchat, it's cross-platform compatible, AND you've got IRC/bnet rolled into one ;P I figured with slackchat's login code already in C it could be done in a week of spare time.

Let me know if you have any design or technical questions.

Title: Re: FreeBSD binary chat client
Post by: nslay on August 23, 2005, 05:58 AM
Quote from: mynameistmp on August 23, 2005, 02:21 AM
Quote
I was thinking of 3 optional interfaces, gtk interface, ncurses, and no interface, all of which the user can choose.

The way I setup my ncurses interface is pretty complicated, you'll want to investigate the Forms library. When I wrote slackchat's interface I didn't have access to the internet, so I had no external references. I had to implement an entire command line, including arrow keys, backspace, etc. Time consuming.

If you're looking for something like a gtk interface, I'd write a plugin for xchat. I've thought about doing this a few times but havn't really had the time to do it. Feel free to just rip all of slackchat's login code (which is fairly simple to do, by design). All of the interface design is done for you by xchat, it's cross-platform compatible, AND you've got IRC/bnet rolled into one ;P I figured with slackchat's login code already in C it could be done in a week of spare time.

Let me know if you have any design or technical questions.



Yes, I could write a plugin for xchat, however, I'd like to be able to use it while building a new system or when I'm forced to use the virtual terminals.  GTK doesn't look terribly difficult anyways.
I was thinking about making it multi protocol (with IRC as base for practicality) and then adding a mechanism to read some sort of ruleset to deal with other protocols (ie, bnet).
As for my progress, I've been out of the loop in programming for a while, however I did write a very flexible configurations parser class.

The overall design and plan I have is
1) Design a configurations parser for a desired format (done)
2) Design an easy to use network handler (although TehUser told me about ACE, I could look it up)
3) Design a UI dispatcher (it determines what to do with window operations, for example, if I wanted a gui, it would use GTK, if curses,it would use curses, if console, it would write it out as text)
4) Sew the above together into a chat client.

#2 It would be a plus to make this a class, then I could easily support multiple connections...though I would have make the GUI XChat or mIRC-like
Title: Re: FreeBSD binary chat client
Post by: mynameistmp on August 24, 2005, 03:57 AM
Quote from: Tazo on August 22, 2005, 08:18 PM
Newby, how do I modify the makefile to make it FreeBSD compatible?

I don't use FreeBSD, but along with the Starcraft 1.13c update I released a version for FreeBSD (any BSD really) just for guys like you ;P Just download the source and it'll compile/run right out of the tarball, no modification necessary.

www.x0r.ca/slackchat/slackchat.htm
Title: Re: FreeBSD binary chat client
Post by: nslay on August 24, 2005, 11:23 AM
Quote from: mynameistmp on August 24, 2005, 03:57 AM
Quote from: Tazo on August 22, 2005, 08:18 PM
Newby, how do I modify the makefile to make it FreeBSD compatible?

I don't use FreeBSD, but along with the Starcraft 1.13c update I released a version for FreeBSD (any BSD really) just for guys like you ;P Just download the source and it'll compile/run right out of the tarball, no modification necessary.

www.x0r.ca/slackchat/slackchat.htm

You should commit a port :)
Although right now, FreeBSD 6 is almost out and we're in a ports freeze until its released
...they do that to make sure all the ports work correctly with the new release
you can check the status here:
http://www.freshports.org/
or subscribe to the FreeBSD ports mailing list...ooo and they have a native Quake III port now :O
Title: Re: FreeBSD binary chat client
Post by: Tazo on August 24, 2005, 09:57 PM
how would I go about removing colors?
Title: Re: FreeBSD binary chat client
Post by: mynameistmp on August 25, 2005, 02:12 AM
You would probably be better off getting a terminal with colour support.
Title: Re: FreeBSD binary chat client
Post by: Tazo on September 25, 2005, 11:57 AM
link seems to be dead..anyone got a copy?
Title: Re: FreeBSD binary chat client
Post by: iago on September 25, 2005, 01:14 PM
His sites down for a few days, it should be back up shortly, don't worry. 
Title: Re: FreeBSD binary chat client
Post by: mynameistmp on September 26, 2005, 12:31 AM
Site moved.

www.javaop.com/~tmp/ is the new location. Thanks to iago.
Title: Re: FreeBSD binary chat client
Post by: Tazo on September 27, 2005, 06:59 PM
The requested URL /~tmp/slackchat_fbsd.tar.gz was not found on this server.
Title: Re: FreeBSD binary chat client
Post by: Newby on September 27, 2005, 07:04 PM
Edit your Makefile (on the original one)'s "slackchat" target to this:

slackchat : main.o isock.o conf.o packet.o checkver.o cdkey.o
        $(CC) main.o isock.o conf.o packet.o checkver.o cdkey.o -o ../slackchat -lncurses