# Copyright (c) 2002 Sean R. Lynch <seanl@chaosring.org>
#
# This file is part of PythonVerse.
#
# PythonVerse is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# PythonVerse is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with PythonVerse; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# -*-Python-*-
import sys

class Client:
    def __init__(self): pass

    def set_server(self, server):
        self.server = server

    def debug(self, t):
        print >> sys.stderr, t

    def background_image(self, image): pass

    def background_progress(self, length, filename, size): pass

    def set_title(self, title): pass

    def raise_object(self, name): pass
    
    def mouseover(self, name, pos, image1, image2): pass

    def newimage(self, filename=None): return None

    def new_avatar(self, nick, pos, image, noffset, boffset): pass
    
    def del_avatar(self, nick): pass

    def exit_obj(self, name, host, port): pass

    def avatar(self, nick, image, noffset, boffset): pass

    def mouseover_image1(self, name, image): pass

    def mouseover_image2(self, name, image): pass

    def avatar_image(self, nick, image): pass

    def move_avatar(self, nick, x, y, speed): pass

    def effect(self, nick, action): pass

    def url(self, nick, url): pass

    def avatar_progress(self, nick, length, filename, size): pass

    def setmouseover(self, name): pass

    def privmsg(self, nick, s): pass

    def chat(self, nick, s): pass
