YATC -- YET ANOTHER TIBIA CLIENT
================================
Copyright (C) 2007-2008 OpenTibia Team

    This program 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.

    This program 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 this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


Programming
  Ivan Vucica       - Khaos
  Magnus K.L.       - Smygflik
                    - mips
  Nate Fries        - nfries88

Contributors
                    - mrauter
  Mariusz Gliwinski - shd


Authors mentioned in no particular order.
================================

YATC is a client for any game that uses Tibia-compatible protocol. It is being
developed as a part of the OpenTibia project. We have chosen the name YATC
since name OpenTibia Client was already taken by a project by another author.

The code has taken shape, but it is still in early development. We develop
support for SDL and OpenGL based drawing engines. GLICT is the current
user interface library. For now we can connect to the login server, display
character list, connect to game world, display basic map, and we can move
around.

This is readme for version 0.2 SVN.

Please visit our site:
 http://sites.google.com/site/yatcclient
To report bugs and see currently reported bugs:
 http://tornado.zrs.hr/~ivucica/otflyspray/index.php?project=2&do=index

Please sign in when reporting bugs!

===============================
1. Quick logon

If you need compile instructions, please read INSTALL. If you have already
compiled, or you have downloaded a binary, please read on.

Copy Tibia.spr, Tibia.dat and Tibia.pic from another client into YATC. We
currently cannot provide these files due to copyright issues, and we have not
created our own files. Then, start YATC. Go to Options->Network, and enter
the server address. Then go to Enter Game and log on using your account
number and password.

We currently support protocols 8.0 and 8.1. Autodetection will see from which
version of the client you have copied the files and will use the appropriate
protocol. You can manually switch protocol in Options->Network.

Under GNU/Linux, do not forget that caps matter. Tibia.spr is not the same
as tibia.spr.

==============================
2. User interface - Main menu

Enter Game
 Displays login window.
Options
 Shows a window offering General, Graphics, Console, Hotkeys and Network
 options, as well as MOTD display.
Info
 Shows info about program.
Exit Game
 Exits the program.

==============================
3. User Interface - Enter Game

Account Number
 Enter your assigned account number here.
Password
 Enter the password you have set.
Create Account
 Unused.

==============================
4. User Interface - Character list

Click on the character you want to log on with. Then click Ok. If there's
more characters than fits in the list, use the arrows to find the character
you want.

==============================
5. User Interface - Game

On the top right you'll find the inventory. Right of it is the map. On the top
right you will find the traffic meter. It measures the amount of bytes
transmitted (TX), received (RX) and total (++). It also measures the same
numbers per hour (in bytes per hour, kibibytes per hour, and mibibytes per
hour).

On the bottom you will find a text box which you can use to chat. Pressing
any letter or number focuses on the textbox automatically.

Use arrow keys to move.

==============================
6. Configuration file

After you first launch YATC and close it, a file named 'yatc.cfg' will be
generated in the working directory. There are some options that are
inaccessible from the user interface so here's documentation. The options
are as follows:

[window]
 engine
  This can be either 0 or 1. 0 sets the SDL rendering engine (default), 1 sets
  the OpenGL rendering engine.
 os_cursor
  Unused; due to be removed.

[login]
 account
  Specifies your account number that will be entered by default.
 password
  Specifies your password that willl be entered by default.

[client]
 skin
  Unused.
 motdnum
  Last number of MOTD that server sent.
 motdtext
  Last text of MOTD that server sent.
 ui_compat
  Change the UI compatibility settings. If set to 0, UI is maximally compatible
  with Tibia. If set to 1, UI is enhanced a bit.

[general]
 classiccontrol
  Unused. An option under Options->General
 autochase
  Unused. An option under Options->General
 showhints
  Unused. An option under Options->General
 shownames
  Unused. An option under Options->General
 showtexteffects
  Unused. An option under Options->General

[graphics]
 fullscreen
  When restarted, YATC will go to fullscreen if this is turned on.
 width
  Width part of resolution, or width of window.
 height
  Height part of resolution, or height of window.
 bpp
  Display color depth. Valid are 8, 16 and 32.

[network]
 server
  Address of server to connect to.
 port
  Port of server to connect to.
 otkey
  If we're connecting to an OpenTibia server, set to 1, otherwise 0.
 protocol
  Protocol version. Valid are 800, 810, 811, 820 and 821.
 overrideversion
  Version to represent to server although another protocol is used. Server
  uses same protocol that's specified under 'protocol', but requires a
  different version sent. (Data files must also have appropriate signatures.)
===========================
7. Observed issues

* Some tiles are not rendered at all.
* If creature steps over another creature, the creatures are swapped.
  (Ordering problem.)
* Under GNU/Linux, SDL timer mechanism seems to be causing freezes.

