#!/usr/bin/wishx
#######################################################################
#
# hlgui
#
# Half-Life dedicated server administration/monitoring GUI client
# Copyright (C) 2000-2003 Rob Abbott
#
#    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., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Comments, bug reports, etc to maelstrom@halfd.org
#
# Maintained by
# Rob Abbott    <maelstsrom@halfd.org>             rabbott 
#
# Contributors:
# Frank Odignal <odignal@stud.fbi.fh-darmstadt.de> ogdinal
# Uli Staerk <uli@spielviel.de> staerk
#
#   rabbott 2004-05-10 - Highlight spectator text
#
#   rabbott 2004-04-29 - Highlight chat text for STEAM
#
#   rabbott 2004-02-15 - Support tclx loadable shared library
#
#   rabbott 2003-01-27 - Make text selectable
#
#   rabbott 2000-01-12 - Revert to non-combobox version
#                      - Fix argument problem when launched from hlclustermon
#
#   rabbott 2000-12-18 - Use uid instead of name for admin_* buttons
#                      - Add "purge caches" option in pulldown menu
#
#   rabbott 2000-11-26 - Add "show deaths" option
#
#   rabbott 2000-11-14 - Add fixed-font option
#
#   rabbott 2000-11-06 - Add to CL history if last command isn't a repeat
#
#   rabbott 2000-10-08 - Change name of configuration file to hlgui.cfg
#
#   rabbott 2000-07-28 - More changes from Uli - map name and time rem fix
#
#   rabbott 2000-07-26 - Merge in Uli's changes (buttons now appear on Linux)
#
#   rabbott 2000-07-12 - Merge in changes from Fritz Elfert <felfert@to.com>
#                      - Command-line history for Command and Broadcast widgets
#                        Bound to <Up> and <Down>
#
#   staerk  2000-07-04 - Added optional admin-mod buttons
#
#   rabbott 2000-11-23 - hlgui 1.70 saved things to the wrong file.  This one works.
#
#   rabbott 2000-11-14 - Fix "sticky" option to stop M$ from complaining :(
#
#   rabbott 2000-10-28 - Added optional 'team' column
#
#   rabbott 2000-10-29 - Release 1.28b2
#
#   rabbott 2000-10-28 - Added optional 'model' column
#
#   rabbott 2000-10-06 - Fix to accomodate Tcl 8.3
#                        (argv now includes executable)
#
#   rabbott 2000-09-18 - Merge in Richard Pennington's resize code :)
#                      - <rich@introl.com>
#
#   rabbott 2000-08-26 - Release 1.21
#                      - Fixed problem that prevented banning
#                      - (Thanks Cory Van Allen)
#
#   rabbott 2000-08-05 - Color-code ADMIN messages
#                      - exec 'banned.cfg' before writeid
#
#   rabbott 2000-07-07 - Menu and Button help menus fixed
#
#   rabbott 2000-06-29 - Release 1.10
#                      - Added macro functionality
#
#   ogdinal 2000/05/10 - log text scrolls only if scrollbar is at bottomost position.
#                        This enables back scrolling/reading w/o intervention of
#                        new log text appearing in the window, scrolling down.
#   ogdinal 2000/05/10 - added coloring of log lines, configurable in initvars
#   ogdinal 2000/05/10 - log window now uses last line (disabled for now, as it
#                        makes problems with tag coloring)
#
#######################################################################
# About - just an info box 
#
proc aboutGui {} {
	global vers vnum font

	helpBox about \
"
This is a GUI-based Half-Life server administration tool for Linux.

Please send email if you encounter problems or have any comments!
maelstrom@halfd.org

Visit Maelstrom's Brewpub (TFC/Linux)
63.68.143.63:27015


$vers, Copyright (C) 2000 Rob Abbott <maelstrom@halfd.org>

$vers comes with ABSOLUTELY NO WARRANTY; for details see Help->Warranty

This is free software, and you are welcome to redistribute it
under certain conditions; see Help->Conditions for details.

\"Relax, don't worry, have a homebrew\"
   -- Charlie Papazian
"
}

proc warranty {} {

	helpBox warranty \
"
                            NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
"
}

proc helpBox { wn text } {
	global vers font

	toplevel .$wn
	frame .$wn.log
	text .$wn.log.text -height 20 -state normal -fg yellow -bg black \
		-yscroll ".$wn.log.sy set" -font $font(norm)
	scrollbar .$wn.log.sy -command ".$wn.log.text yview"
	.$wn.log.text insert end $text

	.$wn.log.text configure -state disabled
	grid .$wn.log.text -in .$wn.log -row 0 -column 1 -sticky nsew
	grid .$wn.log.sy -in .$wn.log -row 0 -column 0 -sticky ns 
	grid rowconfigure .$wn.log 0 -weight 1
	grid columnconfigure .$wn.log 1 -weight 1
	frame .$wn.b
   	button .$wn.b.b1 -text "Dismiss" -command "destroy .$wn" -font $font(norm)
	grid .$wn.b.b1 -in .$wn.b -row 0 -column 0
	grid .$wn.b -in .$wn -row 1 -column 0
	grid .$wn.log -in .$wn -row 0 -column 0 -sticky nsew
	grid rowconfigure .$wn 0 -weight 1
	grid columnconfigure .$wn 0 -weight 1

	centerWindow .$wn .
}

proc cdm {} {
	global vers

	helpBox cdm \
"
		    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The \"Program\", below,
refers to any such program or work, and a \"work based on the Program\"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term \"modification\".)  Each licensee is addressed as \"you\".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)
 
These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
 
  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
 
  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and \"any
later version\", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
"
}

proc menuHelp {} {
	global vers

	helpBox menuhelp \
"$vers

==============================================================================

File Menu
   Connect    : Connects to halfd on the address and port specified under
                Options.  Once connected, your authorization string will be sent
                and you should start receiving updates.

   Disconnect : Disconnects your network connection to halfd.  This will
                not affect any running hlds_l server.

   Change Authorization : Allows you to change your authorization string that
                          you entered when the GUI started.

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

   Launch HL Server : Launches a HL server being managed by the halfd you
                      are connected to.
                      This command is only available to users authorized as
                      administrator.

   Launch HL Server : Stops a running HL server being managed by the halfd you
                      are connected to.
                      This command is only available to users authorized as
                      administrator.

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

   Exit          : Disconnects you from halfd and exits the GUI. 


==============================================================================

Options Menu
   Client Options

      Server Port : The TCP port that halfd is listening on.  Your server
                    administrator can give you this information.
	
      Server Addr : The IP address of the server.  
                    Your server administrator can give you this information.
                    It's probably the same address you connect to in-game.

      Log History : The number of lines to store in the output window at
                    the bottom of the GUI.

      Log Height  : The number of lines visible in the output window at
                    the bottom of the GUI.
                    You may want to change this based on the size of your
                    display.

      Table Height: The number of lines visible in the users/ping/etc table
                    on the GUI.
                    You may want to change this based on the size of your
                    display.

      Show WONid  : If this is enabled, the user's WON ID will appear in
                    the table.

      Show Model  : If this is enabled, the user's model name will appear in
                    the table. 
                    The server must enable 'getmodels', or all you'll see
                    is a dash \"-\" in this field.

      Show Team   : If this is enabled, the user's team ID will appear in
                    the table. 
                    This option will probably only work on TFC and CS servers.

      Show Deaths : If this is enabled, the number of deaths that the user
                    has received for the current map run will be displayed.
                    Note that the server administrator must set \"getdeaths=1\"
		    in their halfd.cfg file.

      Chat Mode   : This only takes effect if you have selected \"Get Text\".
                    If you're getting text, and chat mode is enabled,
                    you will only see messages that players are saying.
                    You won't see any other server events.

      Adminmod    : Adds some adminmod-specific buttons and an \"admin_say\"
                    prompt.

      Fixed font  : This will affect the logging area only.  I've found it's
                    easier to read the server activity with a fixed font.

   Configure Macros

      This dialog allows you to create up to 10 macros that will be
	  accessible from the \"Macros\" menu.

	  These are commands that will be sent directly to the server.
	

   Reset Alert
	 If an alert is present, reset it to green

   Purge Caches
	 hlgui will cache the server maplist when you hit \"Change Map\" or
	 \"View Maps\".  halfd will always maintain the most current list of
	 maps.  If you've added a map want to flush the cache hlgui is using,
	 use this option.

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

   The following options are only available to administrators:

   Open a voting session : If voting is enabled, this will start a voting 
                           session immediately.

   Disable voting : Disables voting altogether.  This is probably a wise
                    thing to do for clan matches.

   Enable  voting : Enables voting, if it's been disabled.
"
}

proc buttonHelp {} {
	global vers

	helpBox buthelp \
"$vers

==============================================================================

Kick/Ban User        
   Kicks the selected user with optional ban - you will get another dialog
   asking for kick/ban details.
   This command is available only to administrators.

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

Change Map       
   Pop up selection list of available maps.
   Executes the 'changelevel' command when you hit \"Apply\".
   This button will only appear if you are an administrator.

View Maps
   Pop up a list of available maps.
   Apply or Cancel will dismiss the list.
   This button will only appear if you have authenticated at the user level.

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

Get Text
   Tells the server that you want to start receiving text messages.
   Information like who said what, who killed who, etc.
   This is not enabled by default because it eats bandwidth.

Stop Text
	If you're receiving text messages, you can turn them off by pressing this
	button.
	Probably a wise thing to do if you're going to be away from the PC
	for a while.

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

nslookup
	Gives you the name associated with the IP address of the selected user.

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

Refresh
   Updates all statistics immediately.  
   This option is only available to administrators.
   Statistics will refresh automatically at a specified interval and when certain
   events occur on the server.

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

Macros
   Allows you to execute a \"macro\" that you've defined in the
   \"Configure Macros\" menu.
   This option is only available to administrators.

==============================================================================

Server Command
   Any text typed here will be executed by the server.
   This command is available only to administrators.

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

Broadcast
	Any text typed here will be broadcast to all users.
   This command is available only to administrators.
"
}

######################################################################
# start of net code
proc connectToServer {} {
	global after sockFd gotInit connected clientOpts tcl_platform

	set gotInit 0

	catch { after cancel $after(connect) }

	set plat $tcl_platform(platform)

	set needResched 0

	if !$connected {
		set addr $clientOpts(addr)
		set port $clientOpts(port)

		statusBar "Connecting to $addr:$port ... "
		update idletasks

		if [cequal $plat unix] {

		# Use asynchronous connections.  Very cool.
		if [ catch {socket -async $addr $port} sockFd] {
			statusBar "Error connecting to $addr:$port : $sockFd"
			set needResched 1
		} else {
			# We need to be non-blocking until we're connected.
			fconfigure $sockFd -blocking 0

			# Now wait for it to connect
			fileevent $sockFd writable sockConnected
		}

		} else {

		# We're on windoze.  Use a blocking connection.  Gross.
		if [ catch { socket $addr $port} sockFd] {
			statusBar "Error connecting to $addr:$port : $sockFd"
			set needResched 1
		} else {
			# We're connected.
			set connected 1
			gotConnection
		}
		}
	}

	if $needResched {
		statusBar "Retrying connection in 30 seconds..."
		set after(connect) [after 30000 connectToServer]
	}
}

proc sockConnected {} {
	global sockFd clientOpts connected

	set addr $clientOpts(addr)
	set port $clientOpts(port)

	# Delete the event
	fileevent $sockFd writable {}
	
	# Make sure we *really* connected
	if [catch { gets $sockFd } err] {
		statusBar "Error connecting to $addr:$port : $err"
		statusBar "Retrying connection in 30 seconds..."
		set after(connect) [after 30000 connectToServer]
	} else {
		# Now we want to block
		fconfigure $sockFd -blocking 1
		set connected 1
		gotConnection
	}
}

proc writeClientSock { data } {
	global sockFd clientOpts connected
	if !$connected return

hlDebug "[clock format [clock seconds] -format %T] wrote '$data'"

	if [catch {
		flush $sockFd
		puts $sockFd $data
		flush $sockFd
	} err ] {
		statusBar "Error writing to socket: '$err'.\nDisconnecting."
		closeClientSock
	}
}

proc closeClientSock {} {
	global sockFd connected

	set connected 0

	catch { close $sockFd }

	statusBar "Closed connection to halfd"
	lostConnection
}

proc readClientSock {} {
	global sockFd

	if [catch { eof $sockFd } eof] {
		statusBar "Error reading from socket: $eof"
		closeClientSock
		return
	}

	if $eof {
		statusBar "halfd dropped the connection!"
		closeClientSock
	} else {
		if [catch {gets $sockFd} data] {
			statusBar "Error reading from socket: $data"
			closeClientSock
		} else {
			# statusBar "Received [clength $data] bytes" 0
			processServerData $data $sockFd
		}
	}
}


# end of net code
######################################################################

proc setClientOpts {} {
	global clientOpts adminOpts font

	set f [toplevel .client]

	wm title $f "Client Options"
	wm resizable $f 0 0
	wm group $f .
	wm transient $f .
	grab set $f 

	frame $f.port
	label $f.port.l -text "Server Port: " -width 25 -font $font(bold)
	entry $f.port.e -textvariable port -width 40 -font $font(norm)
	$f.port.e delete 0 end
	$f.port.e insert 0 $clientOpts(port)

	frame $f.addr
	label $f.addr.l -text "Server Addr: " -width 25 -font $font(bold)
	entry $f.addr.e -textvariable addr -width 40 -font $font(norm)
	$f.addr.e delete 0 end
	$f.addr.e insert 0 $clientOpts(addr)

	frame $f.info
	label $f.info.l -text "Options below require a GUI restart before changes will appear." -font $font(bold)
	
	frame $f.loghist
	label $f.loghist.l -text "Log History: " -width 25 -font $font(bold)
	entry $f.loghist.e -textvariable loghist -width 40 -font $font(norm)
	$f.loghist.e delete 0 end
	$f.loghist.e insert 0 $adminOpts(loghist)

	frame $f.logheight
	label $f.logheight.l -text "Log Height: " -width 25 -font $font(bold)
	entry $f.logheight.e -textvariable logheight -width 40 -font $font(norm)
	$f.logheight.e delete 0 end
	$f.logheight.e insert 0 $adminOpts(logheight)

	frame $f.lbxheight
	label $f.lbxheight.l -text "Table Height: " -width 25 -font $font(bold)
	entry $f.lbxheight.e -textvariable lbxheight -width 40 -font $font(norm)
	$f.lbxheight.e delete 0 end
	$f.lbxheight.e insert 0 $adminOpts(lbxheight)

	frame $f.fontsize
	label $f.fontsize.l -text "Font Size: " -width 25 -font $font(bold)
	entry $f.fontsize.e -textvariable fontsize -width 40 -font $font(norm)
	$f.fontsize.e delete 0 end
	$f.fontsize.e insert 0 $font(size)

	foreach id "port addr info loghist logheight lbxheight fontsize" {
		pack $f.$id.l -side left
		catch { pack $f.$id.e -side left -expand y -fill x }
		pack $f.$id -expand y
	}

	frame  $f.wonid
	label  $f.wonid.l -text "Show WONid " -width 25 -font $font(bold)
	checkbutton $f.wonid.b -variable chkWonId
	set de de
	if $adminOpts(wonid) { set de "" }
	$f.wonid.b ${de}select
	pack $f.wonid.l -side left
	pack $f.wonid.b -side left
	pack $f.wonid

	frame  $f.deaths
	label  $f.deaths.l -text "Show Deaths " -width 25 -font $font(bold)
	checkbutton $f.deaths.b -variable chkDeaths
	set de de
	if $adminOpts(deaths) { set de "" }
	$f.deaths.b ${de}select
	pack $f.deaths.l -side left
	pack $f.deaths.b -side left
	pack $f.deaths

	frame  $f.model
	label  $f.model.l -text "Show Models " -width 25 -font $font(bold)
	checkbutton $f.model.b -variable chkModels
	set de de
	if $adminOpts(model) { set de "" }
	$f.model.b ${de}select
	pack $f.model.l -side left
	pack $f.model.b -side left
	pack $f.model

	frame  $f.team
	label  $f.team.l -text "Show Team " -width 25 -font $font(bold)
	checkbutton $f.team.b -variable chkTeam
	set de de
	if $adminOpts(team) { set de "" }
	$f.team.b ${de}select
	pack $f.team.l -side left
	pack $f.team.b -side left
	pack $f.team

	frame  $f.chat
	label  $f.chat.l -text "Chat Mode " -width 25 -font $font(bold)
	checkbutton $f.chat.b -variable chkChat
	set de de
	if $adminOpts(chatmode) { set de "" }
	$f.chat.b ${de}select
	pack $f.chat.l -side left
	pack $f.chat.b -side left
	pack $f.chat

	# Admin-mod checkbox by Uli
	frame  $f.adminmod
	label  $f.adminmod.l -text "Adminmod " -width 25 -font $font(bold)
	checkbutton $f.adminmod.b -variable chkAdmin
	set de de
	if $adminOpts(adminmod) { set de "" }
	$f.adminmod.b ${de}select
	pack $f.adminmod.l -side left
	pack $f.adminmod.b -side left
	pack $f.adminmod

	# Fixed-font checkbox
	frame  $f.fixedfont
	label  $f.fixedfont.l -text "Fixed font " -width 25 -font $font(bold)
	checkbutton $f.fixedfont.b -variable chkFixed
	set de de
	if $adminOpts(fixedfont) { set de "" }
	$f.fixedfont.b ${de}select
	pack $f.fixedfont.l -side left
	pack $f.fixedfont.b -side left
	pack $f.fixedfont
	

	frame $f.buts
	button $f.buts.a -text "Save" -command {

		foreach id "port addr" {
			set clientOpts($id) [.client.$id.e get]
		}

		foreach id "loghist logheight lbxheight" {
			set adminOpts($id) [.client.$id.e get]
		}

		set font(size) $fontsize
		set adminOpts(wonid)    $chkWonId
		set adminOpts(model)   $chkModels
		set adminOpts(team)    $chkTeam
		set adminOpts(chatmode) $chkChat
		set adminOpts(adminmod) $chkAdmin
		set adminOpts(fixedfont) $chkFixed
		set adminOpts(deaths)   $chkDeaths

		writeConfig
		destroy .client
	}

	button $f.buts.c -text "Cancel" -command {
		destroy .client
	}

	label $f.buts.l -text "" -width 5 -font $font(bold)

	pack $f.buts.a -side left 
	pack $f.buts.l -side left 
	pack $f.buts.c -side right
	pack $f.buts

	centerWindow $f .

	update idletasks
}

proc execMacro {} {
	global macros

	set macs ""
	loop i 0 11 {
		if ![cequal $macros($i) ""] { lappend macs $macros($i) }
	}

	if [lempty $macs] {
		statusBar "You haven't defined any macros!" 0
	} else {
		popupListBox "Select A Macro" 10 $macs execCmd
	}
}
	

proc createMacroMenu {} {
	global macros

	loop i 0 11 {
		catch { .menubar.macros.menu delete $i }
	}


   loop i 0 11 {
   		if [cequal $macros($i) ""] {
			set macLabel "<no macro>"
		} else {
			set macLabel $macros($i)
		}

   		.menubar.macros.menu add command -activeforeground blue -label $macLabel -command {
			# FOR SOME REASON THIS DOESN'T RETURN THE ACTIVE
			# SELECTION IN WINDOZE... :( !!!
			set idx [.menubar.macros.menu index active]
			if ![cequal $idx none] {
				set macCmd $macros($idx)
				if ![cequal $macCmd ""] {
					execCmd $macCmd
				}
			}
		}
   }
}
	

proc setMacros {} {
	global clientOpts adminOpts font macros

	set f [toplevel .macros]

	wm title $f "Macros"
	wm resizable $f 0 0
	wm group $f .
	wm transient $f .
	grab set $f 

	loop i 0 11 {
		frame $f.macro$i
		label $f.macro$i.l -text "Macro # $i: " -width 25 -font $font(bold)
		entry $f.macro$i.e -textvariable macro$i -width 40 -font $font(norm)
		$f.macro$i.e delete 0 end
		$f.macro$i.e insert 0 $macros($i)

		pack $f.macro$i.l -side left
		pack $f.macro$i.e -side left -expand y -fill x
		pack $f.macro$i -expand y
	}

	frame $f.buts
	button $f.buts.a -text "Save" -command {

		loop i 0 11 {
			set macros($i) [string trim [.macros.macro$i.e get]]
		}

#		createMacroMenu

		writeConfig
		destroy .macros
	}

	button $f.buts.c -text "Cancel" -command {
		destroy .macros
	}

	label $f.buts.l -text "" -width 5 -font $font(bold)

	pack $f.buts.a -side left 
	pack $f.buts.l -side left 
	pack $f.buts.c -side right
	pack $f.buts

	centerWindow $f .

	update idletasks
}


proc setAuthState {} {
	global connected serverUp authLevel

	if ![info exists connected] { set connected 0 }
	if ![info exists authLevel] { set authLevel 0 }

	set authState normal

	# If not connected, disable everything except connect, exit, options, help
	# reset
	if !$connected {
		set authState disabled
		set svrStart disabled
		set svrStop  disabled
	} elseif $serverUp {
		set svrStart disabled
		set svrStop  normal
	} else {
		set svrStart normal
		set svrStop  disabled
	}

	# text, nslookup, refresh, changelevel
	.buts.tx configure -state $authState
	.buts.nl configure -state $authState
	.buts.refresh configure -state $authState
	.buts.cl configure -state $authState
	.buts.mac configure -state $authState

	if { $authLevel < 2 || !$connected } {
		set authState disabled
		set authColor grey
		set svrStart disabled
		set svrStop  disabled
	} else {
		set authState normal
		set authColor black
	}

	# Start and stop server
	.menubar.file.menu entryconfigure 4 -state $svrStart
	.menubar.file.menu entryconfigure 5 -state $svrStop

	# If not authorized, disable kick, start/stop server
	# open voting, enable voting, disable voting and refresh
	# Disable voting under 'options'
	foreach entry "5 6 7" {
		.menubar.options.menu entryconfigure $entry -state $authState
	}

	# Disable/enable macros
	loop i 0 11 {
		catch { .menu.macros.$i entryconfigure $entry -state $authState }
	}


	# Kick , changelevel, macros
	.buts.kick    configure -state $authState
	.buts.refresh configure -state $authState
	.buts.mac     configure -state $authState

	#admin-mod slap, slay, bury, unbury
	.buts2.slap    configure -state $authState
	.buts2.slay    configure -state $authState
	.buts2.bury    configure -state $authState
	.buts2.unbury  configure -state $authState

	# Change Map <-> View Maps
	if { $authLevel < 2 } {
		.buts.cl configure -text "View Maps"
	} else {
		.buts.cl configure -text "Change Map"
	}

	# Command, broadcast
	.cmd.e configure -state $authState
	.cmd.l configure -fg $authColor
	.say.e configure -state $authState
	.say.l configure -fg $authColor
	.normsay.e configure -state $authState
	.normsay.l configure -fg $authColor

	update idletasks

	return
}

proc processServerData { data fd } {
	global gotInit serverUp authLevel mapList svrInfo userInfo adminOpts
	global ignorepong

	if [cequal $data ""] return

	if [catch { keylget data type } type] {
		statusBar "Protocol error: $type"
		statusBar "Invalid data from halfd: $data"
		closeClientSock
		return
	}

	keylget data up up

	if { !$up && $serverUp } {
		serverDown
	} elseif { $up && !$serverUp } {
		serverUp
	}
		
	if ![catch {keylget data time} time] {
		set svrInfo(timeleft) $time
		updateTimer
	}

	if { [cequal $type INIT] } {
		set gotInit 1

		keylget data auth authLevel 

		switch -exact -- $authLevel {
			0 { statusBar "You're not authorized!" }
			1 { statusBar "You're authorized as a USER." }
			2 { statusBar "You're authorized as an ADMINISTRATOR." }
			default {
				set err "[now] Unknown authLevel received: $authLevel"
				.alert.text configure -text $err -bg red
				statusBar $err
			}
		}

		setAuthState

		if $serverUp {
			keylget data name svrInfo(name)
			keylget data ip   svrInfo(ip)
			keylget data max  svrInfo(max)
			keylget data port svrInfo(port)
			serverUp
			return
		}
	} elseif !$gotInit {
		statusBar "Didn't get INIT message from server!"
		closeClientSock
		return
	}

	switch -exact -- $type {
		UPDATE {
			foreach id "users pings frags times ips wonid userid model team deaths" {
				set userInfo($id) ""
			}

			foreach id "users pings frags times ips userid wonid model team deaths" {
				keylget data data.$id userInfo($id)
			}

			keylget data data.map  svrInfo(map)
			keylget data data.cnt  svrInfo(player)
			keylget data data.vote svrInfo(vote)

			Bind_Display
			statusBar "Refreshed statistics: [now]" 0
		}

		TEXT {
			keylget data data text

			if $ignorepong {
				if [cequal $text PONG] {
					set ignorepong 0
				} else {
					logText $text
				}
			} else {
				logText $text
			}
		}

		SB     {
			keylget data data.sb sb
			keylget data data.text text
			if !$sb { set sb 2 }
			statusBar $text $sb
		}

		STATUS {}

		ERR {
			keylget data data err
			.alert.text configure -text $err -bg red
		}

		MAPLIST {
			keylget data data mapList
		}
	}
}

proc updateTimer {} {
	global svrInfo

	if [cequal $svrInfo(timeleft) 0] {
		set maprem ??:??
	} elseif ![ctype digit $svrInfo(timeleft)] {
		set maprem $svrInfo(timeleft)
	} else {
		set maprem ""
		set mapsec $svrInfo(timeleft)
		set maphr  [expr $mapsec / 3600]
		if $maphr { set maprem "$maphr:" }

		set mapmin [expr [expr $mapsec / 60] % 60]
		set mapsec [format %02d [expr $mapsec % 60]]

		append maprem $mapmin:$mapsec
	}

	.map.tl configure -text "Approx time left: $maprem"
}

proc lostConnection {} {
	global gotInit gettingText authLevel svrInfo userInfo

	toggleText 1

	if !$gotInit {
		statusBar "You probably entered the wrong authorization code."
		logText   "Or you might be connecting to the wrong server."
		logText   "You can change the server you're connecting to under the Options->Client Options pulldown."
	} else {
		set gotInit 0
	}

	.status.halfd configure -text "<Not Connected>"  -bg red
	.status.hlds_l  configure -text "<Status Unknown>" -bg red
	.menubar.file.menu entryconfigure 0 -state normal
	.menubar.file.menu entryconfigure 1 -state disabled

	set svrInfo(map)    ""
	set svrInfo(player) 0
	set svrInfo(vote) 3

	foreach id "users pings frags times ips wonid userid model team deaths" {
		set userInfo($id) ""
	}
	Bind_Display

	set authLevel 0
	setAuthState
}

proc gotConnection {} {
	global sockFd authString clientOpts after adminOpts

	statusBar \
	"Established connection to halfd on server $clientOpts(addr):$clientOpts(port)"
	if ![info exists authString] getAuth
	writeClientSock $authString
	fileevent $sockFd readable readClientSock

	.status.halfd configure -text "Connected to halfd"  -bg green

	.menubar.file.menu entryconfigure 0 -state disabled
	.menubar.file.menu entryconfigure 1 -state normal

	if $adminOpts(keepalive) {
		set after(keepalive) [after [expr $adminOpts(keepalive) * 1000] keepalive]
	}
}

proc keepalive {} {
	global after connected adminOpts ignorepong
	if !$connected return

	writeClientSock PING
	set ignorepong 1

	# Reschedule
	set after(keepalive) [after [expr $adminOpts(keepalive) * 1000] keepalive]
}

proc toggleText {{stop 0}} {
	global gettingText adminOpts

	if $stop { set gettingText 1 }

	if $gettingText {
		writeClientSock NOTEXT
		set gettingText 0
		set mode Get
	} else {
		if $adminOpts(chatmode) {
			writeClientSock "CHAT"
		} else {
			writeClientSock "TEXT"
		}
		set gettingText 1
		set mode Stop
	}

	.buts.tx configure -text "$mode Text"
}


proc logText { text } {
	global adminOpts userInfo expr tagbg tagfg logbg logfg

	.info.text configure -state normal
	.info.text insert end "$text\n" 
	set lines [.info.text index end]
	if { [lindex [.info.sy get] 1] == 1 } {
		.info.text see end 
	}

	if { $lines > $adminOpts(loghist) } {
		set cnt [expr int($lines) - $adminOpts(loghist) - 1]
		.info.text delete 0.0 $cnt.0
	}
	# highlight chat msgs
	set lines [.info.text index end]
	foreach user $userInfo(users) {
		set linenumber [expr [lindex [split $lines .] 0] - 2]
		set tagstart $linenumber.0
		set tagend [expr $linenumber + 1].0
		if { [cequal [string first $user [string trimleft $text]] 0] || [regexp -- $expr(team) $text] } {
			.info.text tag add chat $tagstart $tagend
			.info.text tag configure chat -background $tagbg(chat) -foreground $tagfg(chat)
		} elseif { [regexp -- $expr(dead) $text] } {
			.info.text tag add dead $tagstart $tagend
			.info.text tag configure dead -background $tagbg(dead) -foreground $tagfg(dead)
		} elseif { [regexp -- $expr(terrorist) $text] } {
			.info.text tag add terrorist $tagstart $tagend
			.info.text tag configure terrorist -background $tagbg(terrorist) -foreground $tagfg(terrorist)
		} elseif { [regexp -- $expr(counter-terrorist) $text] } {
			.info.text tag add counter-terrorist $tagstart $tagend
			.info.text tag configure counter-terrorist -background $tagbg(counter-terrorist) -foreground $tagfg(counter-terrorist)
		} elseif { [regexp -- $expr(server) $text] } {
			.info.text tag add server $tagstart $tagend
			.info.text tag configure server -background $tagbg(server) -foreground $tagfg(server)
		} elseif { [regexp -- $expr(spec) $text] } {
			.info.text tag add spec $tagstart $tagend
			.info.text tag configure spec -background $tagbg(spec) -foreground $tagfg(spec)
		} else {
			#.info.text tag add log $tagstart $tagend
			#.info.text tag configure log -background $logbg -foreground $logfg
			#.info.text tag raise log
		}
	}
	.info.text configure -state disabled
}

#######################################################################
# tkerror - supress any gui error msgs; server *may* continue to run...?
#
#proc tkerror {errmsg} {
#     puts stderr "An error has occurred.  If you can reliably reproduce it,"
#     puts stderr "please contact the author!   See Help->About."
#     puts stderr $errmsg
#}


######################################################################
# centerWindow - center a window on the display or relative to a 
#                   parent window
#
# Args:
#        window  - window to be centered
#        parent  - (optional) parent window in which 'window'
#                  should be centered. If empty, 'window' is
#                  centered on the display
#
# Notes:
#
# This really only works if the size of the window has already been
# established.  For example, if a window hasn't been mapped yet it's
# width and height may very will be 1x1. Grep for examples of how to
# work around this
#
# PACKAGE-EXPORT centerWindow
#
proc centerWindow {window {parent {}}} {

    set centerDisp 1
    if {$parent != {}} {
	if {[winfo viewable $parent]} {
	    set centerDisp 0
	} 
    } 

    if {$centerDisp} {
	set pw [winfo screenwidth $window]
	set ph [winfo screenheight $window]
    } else {
	set pw [winfo width $parent]
	set ph [winfo height $parent]
    }

    set width [expr [winfo reqwidth $window] + 10]
    set height [expr [winfo reqheight $window] + 10]

    if {$centerDisp} {
	set xo 0
	set yo 0
    } else {
	set xo [winfo x $parent]
	set yo [winfo y $parent]
    }

    set x [expr ($pw / 2) - ($width / 2) + $xo]
    set y [expr ($ph / 2) - ($height / 2) + $yo]

    set screen $parent
    if {$parent == {}} {set screen .}
    set maxX [expr [winfo screenwidth $screen] - $width]
    set maxY [expr [winfo screenheight $screen] - $height]
    set x [min [max $x 0] $maxX]
    set y [min [max $y 0] $maxY]

    wm geometry $window "+$x+$y"
}

proc statusBar { text {log 1} } {
	global adminOpts

	catch {

	if { $log < 2 } {
		.statusbar configure -text $text
	}

	if $log {
		logText $text
	}

	update idletasks

	}
}

proc changeLevel { map } {
	global fds adminOpts authLevel

	if { $authLevel > 1 } {
		writeClientSock "changelevel $map"
		statusBar "Changed map to '$map'"
	}
}

proc serverUp {} {
	global fds serverUp svrInfo
	set serverUp 1

	# .status.hlds_l configure -text "$svrInfo(name) -- $svrInfo(ip)" -bg green
	.status.hlds_l configure -text $svrInfo(name) -bg green

	.menubar.file.menu entryconfigure 4 -state disabled
	.menubar.file.menu entryconfigure 5 -state normal

	setAuthState
}

proc nsLookup {} {
	global userInfo

	set idx [.table.user.l curselection]
	if [cequal $idx ""] {
		statusBar "Please select an IP address to lookup..." 0
		sleep 1
		return
	}

	set ip [lindex $userInfo(ips) $idx]
	if [cequal $ip CONNECTING] {
		statusBar "Please wait for the user to connect!" 0
		return
	}

	statusBar "Performing nameserver lookup on $ip..."
	update idletasks

	if [catch { host_info official_name $ip } data] {
		statusBar "Error on nslookup: $data"
	} else {
		set user [lindex $userInfo(users) $idx]
		statusBar "$user - $ip resolves to [string trim $data]"
	}
}

proc popupListBox { title height list okcmd } {
	global lbcmd font

	set lbcmd $okcmd
	set f [toplevel .listBox]

	wm title $f $title
	wm resizable $f 0 0
	wm group $f .
	wm transient $f .
	grab set $f 

	frame $f.lb
	scrollbar $f.lb.sb -orient vertical -command [list $f.lb.lb yview]

	listbox $f.lb.lb -height $height -yscrollcommand [list $f.lb.sb set] -font $font(norm)
	pack $f.lb.sb -side left -fill y -expand y
	pack $f.lb.lb -side right
	pack $f.lb
	foreach item $list {
		$f.lb.lb insert 0 $item
	}

	frame $f.buts
	button $f.buts.a -text "Apply" -command {
		catch {
		[$lbcmd [.listBox.lb.lb get [.listBox.lb.lb curselection]]]
		}
		destroy .listBox
	} -font $font(norm)

	button $f.buts.c -text "Cancel" -command {
		destroy .listBox
	} -font $font(norm)
	pack $f.buts.a -side left 
	pack $f.buts.c -side right
	pack $f.buts

	centerWindow $f .

	tkwait window $f
}

proc popupError { error } {
	global vers errText font
	set f .error

	set errText $error

	toplevel $f

	wm title $f "$vers Error"
	wm resizable $f 0 0
	wm group $f .
	wm transient $f .
	grab set $f 

	frame $f.f
	message $f.f.t -fg red -bg black -text $errText -justify left 
	pack $f.f.t

	frame $f.buts
	button $f.buts.d -text "Dismiss" -command {destroy .error}
	pack $f.buts.d -side bottom
	button $f.buts.s -text "Save Error Msg" -command {
		set fd [open hlgui.err a]
		puts $fd [replicate = 70]
		puts $fd "Error occurred [now]"
		puts $fd ""
		puts $fd $errText
		puts $fd ""
		close $fd
		.error.sb.l configure -text "Saved msg to [pwd]/hlgui.err"
	}
	pack $f.buts.d -side left
	pack $f.buts.s -side right
	pack $f.buts -side bottom -fill x -expand 1

	frame $f.sb -relief raised -bd 3
	label $f.sb.l -text "Welcome to hlgui!" -font $font(bold)
	pack $f.sb.l
	pack $f.sb -side bottom -fill x -expand 1

	pack $f.f

	centerWindow $f .

	update idletasks
	tkwait window $f
}

proc serverDown {} {
	global serverUp
	set serverUp 0

	.status.hlds_l configure -text "<Server Down>" -bg red

	.stats.tul configure -text "Conn / Active / Max:  0 / 0 / 0"
	.stats.apl configure -text "Avg Ping:  0"
	.stats.vote configure -text "Vote: <Unknown>"

	.map.t  configure -text "Map : <None>"
	.map.tl configure -text "Approx time left: ??:??"

	setAuthState
}

proc Bind_Display {} {
	global lbxs userInfo adminOpts svrInfo font

	# Get the current selection, if any
	set idx [.table.user.l curselection]
	set oldId "xxx"
	if ![cequal $idx ""] {
		set user [.table.user.l get $idx]
		set ip   [.table.ip.l get $idx]
		set oldId "$user^$ip"

		foreach id "user ping frag time ip" {
			.table.$id.l selection clear $idx
		}

		if { $adminOpts(wonid) && $adminOpts(packedwonid) } {
			.table.wonid.l selection clear $idx
		}

		if { $adminOpts(deaths) && $adminOpts(packeddeaths) } {
			.table.deaths.l selection clear $idx
		}

		if { $adminOpts(model) && $adminOpts(packedmodel) } {
			.table.model.l selection clear $idx
		}

		if { $adminOpts(team) && $adminOpts(packedteam) } {
			.table.team.l selection clear $idx
		}
	}

	set con 0
	set act 0
	foreach ip $userInfo(ips) {
		if [cequal $ip CONNECTING] {
			incr con
		} else {
			incr act
		}
	}

	.stats.tul configure -text "Conn / Active / Max:   $con / $act / $svrInfo(max)"

	set avgping 0
	if { $svrInfo(player) > 0 } {
		set tot 0
		set cnt $svrInfo(player)

		foreach ping $userInfo(pings) {
			# Make sure pings are numeric...
			if ![ctype digit $ping] {
				popupError "
Found a non-numeric PING!  Please verify that the server
administrator has set up their halfd.cfg file
correctly.

They may need to change the 'ipfromstats' and 'statusfields'
settings in their halfd.cfg file.
"
				incr cnt -1
			} else {
				# Toss the '9999' pings
				if [cequal $ping 9999] {
					incr cnt -1
				} else {
					incr tot $ping
				}
			}
		}

		#set cnt $svrInfo(player)
		#set high 0
		#set low  9999
		#if { $svrInfo(player) > 3 } {
		#	# Toss the 9999 pings
		#	incr tot -$high
		#	incr tot -$low
		#	incr cnt -2
		#}

		if $cnt { set avgping [expr $tot / $cnt] }
	}
	.stats.apl configure -text "Avg Ping:   $avgping"

	switch $svrInfo(vote) {
		0 { set vote Disabled  }
		1 { set vote Enabled   }
		2 { set vote In-Session }
		default { set vote <Unknown> }
	}
	.stats.vote configure -text "Vote: $vote"

	.map.t configure -text "Map : $svrInfo(map)"
	updateTimer

	# Do the table
	foreach lbx $lbxs {
		$lbx delete 0 end
	}

	set i 0
	foreach user $userInfo(users) {
		.table.user.l  insert end $user
		.table.ping.l  insert end [lindex $userInfo(pings) $i]
		.table.frag.l  insert end [lindex $userInfo(frags) $i]
		.table.time.l  insert end [lindex $userInfo(times) $i]

		set ip [lindex $userInfo(ips) $i]
		.table.ip.l    insert end $ip

		# Put the selection back if that user is still around
		if [cequal "$user^$ip" $oldId] {
			foreach id "user ping frag time ip" {
				.table.$id.l selection set $i
			}
		}

		if { $adminOpts(wonid) && $adminOpts(packedwonid) } {
			.table.wonid.l insert end [lindex $userInfo(wonid) $i]
			if [cequal "$user^$ip" $oldId] {
				.table.wonid.l selection set $i
			}
		}

		if { $adminOpts(deaths) && $adminOpts(packeddeaths) } {
			.table.deaths.l insert end [lindex $userInfo(deaths) $i]
			if [cequal "$user^$ip" $oldId] {
				.table.deaths.l selection set $i
			}
		}

		if { $adminOpts(model) && $adminOpts(packedmodel) } {
			.table.model.l insert end [lindex $userInfo(model) $i]
			if [cequal "$user^$ip" $oldId] {
				.table.model.l selection set $i
			}
		}

		if { $adminOpts(team) && $adminOpts(packedteam) } {
			.table.team.l insert end [lindex $userInfo(team) $i]
			if [cequal "$user^$ip" $oldId] {
				.table.team.l selection set $i
			}
		}

		incr i
	}

}

proc BindDragto { x y args } {
        foreach w [lindex $args 0] {
                $w scan dragto $x $y
        }
}

proc BindMark { x y args } {
        foreach w $args {
                $w scan mark $x $y
        }
}

proc BindYview { lists args } {
        foreach l $lists {
                eval {$l yview} $args
        }
}

proc BindSelect { y args } {
        foreach w [lindex $args 0] {
                $w select clear 0 end
                $w select anchor [$w nearest $y]
                $w select set anchor [$w nearest $y]
        }
}

proc writeConfig {} {
	global clientOpts adminOpts gameId kl font macros cfgfile

	if [catch {open $cfgfile w} fd] {
		popupError "Error writing configuration file: $fd"
		exit 1
	}


	keylset kl CLIENT.fixedfont  $adminOpts(fixedfont)
	keylset kl CLIENT.chatmode  $adminOpts(chatmode)
	keylset kl CLIENT.loghist   $adminOpts(loghist)
	keylset kl CLIENT.logheight $adminOpts(logheight)
	keylset kl CLIENT.lbxheight $adminOpts(lbxheight)
	keylset kl CLIENT.adminmod  $adminOpts(adminmod)
	keylset kl CLIENT.wonid     $adminOpts(wonid)
	keylset kl CLIENT.model     $adminOpts(model)
	keylset kl CLIENT.team      $adminOpts(team)
	keylset kl CLIENT.fontsize  $font(size)
	keylset kl CLIENT.deaths    $adminOpts(deaths)

	loop i 0 11 {
		keylset kl MACRO.$i $macros($i)
	}

	keylset kl SERVER.port $clientOpts(port)
	keylset kl SERVER.addr $clientOpts(addr)

	puts $fd [replicate # 78]
	puts $fd "# halfd Client Configuration File"

	if [catch {
		puts $fd "# Updated [now], [id user]"
	} err] {
		puts $fd "# Updated [now]"
	}

	puts $fd [replicate # 78]
	puts $fd "#"
	puts $fd ""
	foreach item $kl {
		puts $fd [list $item]
	}

	close $fd
}

proc readConfig {} {
	global clientOpts adminOpts gameId kl font macros env cfgfile

	set upgradeConfig 0
	set hldir_exists 0

	set cfglist "hlgui.cfg ~/.hlgui.cfg ~/hlgui.cfg"
	if [info exists env(HLDIR)] {
		cd $env(HLDIR)
		lappend cfglist $env(HLDIR)/hlgui.cfg
		set hldir_exists 1
	} 

	set cfgfile NOTFOUND
	foreach cfg $cfglist {
		if [file exists $cfg] {
			set cfgfile $cfg
			break
		}
	}

	if [cequal $cfgfile NOTFOUND] {
		if [file exists halfd_client.cfg] {
			set cfgfile halfd_client.cfg
			set upgradeConfig 1
		} elseif $hldir_exists {
			if [file exists $env(HLDIR)/halfd_client.cfg] {
				cd $env(HLDIR)
				set cfgfile halfd_client.cfg
				set upgradeConfig 1
			}
		} else {
			popupError "
Can't find 'hlgui.cfg' configuration file!

hlgui searches in the following order for hlgui.cfg:

Current directory
Home directory
\$HLDIR

Please put a hlgui.cfg file in one of these locations!"
			exit 1
		}
	}

	if [catch {open $cfgfile r} fd] {
		popupError "Error opening configuration file: $fd"
		exit 1
	}

	set kl ""
	while 1 {
		set line [gets $fd]
		if [eof $fd] break
		if {[cequal [string trim $line] ""] || \
			[cequal [csubstr [string trim $line] 0 1] "#"]} continue
		append kl " $line"
	}

	set adminOpts(lbxheight) 10
	set adminOpts(logheight) 10
	set adminOpts(loghist)   300
	set adminOpts(wonid)     0
	set adminOpts(model)     0
	set adminOpts(team)      0
	set adminOpts(chatmode)  0
	set adminOpts(fixedfont)  0
	set adminOpts(adminmod)  0
	set adminOpts(keepalive)  0
	set adminOpts(deaths)    0

	set font(size) 14

	set clientOpts(port) 3000
	set clientOpts(addr) 63.68.143.63

	loop i 0 11 { set macros($i) "" }

	keylget kl CLIENT.keepalive adminOpts(keepalive)
	keylget kl CLIENT.chatmode  adminOpts(chatmode)
	keylget kl CLIENT.fixedfont adminOpts(fixedfont)
	keylget kl CLIENT.adminmod  adminOpts(adminmod)
	keylget kl CLIENT.loghist   adminOpts(loghist)
	keylget kl CLIENT.logheight adminOpts(logheight)
	keylget kl CLIENT.lbxheight adminOpts(lbxheight)
	keylget kl CLIENT.wonid     adminOpts(wonid)
	keylget kl CLIENT.model     adminOpts(model)
	keylget kl CLIENT.team      adminOpts(team)
	keylget kl CLIENT.deaths    adminOpts(deaths)
	keylget kl CLIENT.fontsize  font(size)

	loop i 0 11 {
		keylget kl MACRO.$i macros($i)
	}

	keylget kl SERVER.port clientOpts(port)
	keylget kl SERVER.addr clientOpts(addr)

	if $upgradeConfig { 
		set cfgfile hlgui.cfg
		writeConfig
		catch { unlink halfd_client.cfg }

		after 5000 {
			catch {
				statusBar "UPGRADED halfd_client.cfg to hlgui.cfg"
				logText "(You should only see this message once)"
			}
		}

		after 5100 {
			catch {
				statusBar "Using configuration file: $cfgfile"
			}
		}
	}
}

proc buildTable {} {
	global lbxs adminOpts font

	set lbxfs [list .table.user .table.ping .table.frag]
	set widths [list 30 6 6]
	set hdrs [list Users Ping Frags]

	if $adminOpts(deaths) { 
		lappend lbxfs .table.deaths
		set adminOpts(packeddeaths) 1
		lappend widths 6
		lappend hdrs   Deaths
	} else {
		set adminOpts(packeddeaths) 0
	}

	lappend lbxfs .table.time .table.ip
	lappend widths 10 18
	lappend hdrs Time "IP Address"

	if $adminOpts(wonid) { 
		lappend lbxfs .table.wonid
		set adminOpts(packedwonid) 1
		lappend widths 10
		lappend hdrs   WONid
	} else {
		set adminOpts(packedwonid) 0
	}


	if $adminOpts(model) { 
		lappend lbxfs .table.model
		set adminOpts(packedmodel) 1
		lappend widths 12
		lappend hdrs   Model
	} else {
		set adminOpts(packedmodel) 0
	}

	if $adminOpts(team) { 
		lappend lbxfs .table.team
		set adminOpts(packedteam) 1
		lappend widths 6
		lappend hdrs   Team
	} else {
		set adminOpts(packedteam) 0
	}

	foreach lbxf $lbxfs {
		lappend lbxs ${lbxf}.l
	}

   #
   # User, ping, frags, time, ip , (and optionally) wonid, deaths, model, team table
   #

	frame .table
	set frame .table
	grid rowconfigure $frame 0 -weight 1

	# Five listboxes and a scrollbar
	set i 0
	foreach lbxf $lbxfs {
		frame $lbxf
		if !$i {
			set sf $frame.sy
			scrollbar $sf -orient vertical \
				-command [list BindYview $lbxs]
		}
		label $lbxf.t -text [lindex $hdrs $i] -font $font(bold)
		set lbx $lbxf.l
			
		set export "false"
		if !$i {set export "true"}
		listbox $lbxf.l \
			-yscrollcommand [list $sf set] \
			-exportselection $export \
			-bg black -fg green \
			-width [lindex $widths $i] \
			-font $font(norm)

			# -height $adminOpts(lbxheight) \

		incr i
	}

	grid $sf -in $frame -row 0 -column 0 -sticky ns

	set i 1
	foreach lbx $lbxfs {
		grid $lbx.t -in $lbx -row 0 -column 0 -sticky ew
		grid $lbx.l -in $lbx -row 1 -column 0 -sticky nsew
		grid rowconfigure $lbx 1 -weight 1
		grid $lbx -in $frame -row 0 -column $i -sticky nsew
		incr i
	}

	# expand the next (unfilled) column
        grid columnconfigure $frame $i -weight 1

	foreach lbx $lbxs {
		bind $lbx <ButtonPress> \
			[list BindSelect %y $lbxs]
		bind $lbx <ButtonRelease> \
			[list BindSelect %y $lbxs]
		bind $lbx <Button> \
			[list BindSelect %y $lbxs]
		bind $lbx <B1-Motion> \
			[list BindDragto %x %y $lbxs]
		bind $lbx <B2-Motion> \
			[list BindDragto %x %y $lbxs]
	}

        return $frame
}

proc launchServer {} {
	statusBar "Starting server.  Please wait for it to come up..."
	writeClientSock start
}

proc addHist { which { cmd "" }} {
	global hist histidx

	if ![info exists histidx($which)] {
		set hist($which) {}
		set histidx($which) 0
	}

	set last [lindex $hist($which) [expr [llength $hist($which)] -1]]

	if { ![cequal $last $cmd] && ![cequal [string trim $cmd] ""] } {
		lappend hist($which) "$cmd"
		if {[llength $hist($which)] > 100} {
			lreplace hist($which) 0 0
		}
	}

	set histidx($which) [llength $hist($which)]
}

proc getHist { which dir } {
	global hist histidx

	if ![info exists histidx($which)] {
		set hist($which) {}
		set histidx($which) 0
	}
	set histidx($which) [expr $histidx($which) + $dir]
	if {$histidx($which) < 0} {
		set histidx($which) 0
		bell
		return
	}
	if {$histidx($which) > [llength $hist($which)]} {
		set histidx($which) [llength $hist($which)]
		bell
		return
	}
	$which delete 0 end
	$which insert 0 [lindex $hist($which) $histidx($which)]
}

#this onoe uses admin-mods' admin_tsay feature
proc say { { text "" } } {

	if [cequal $text ""] {
		set text [.say.e get]
		.say.e delete 0 end
	}

	writeClientSock "admin_command admin_tsay red $text"
	
	statusBar "Said: '$text'..."

	if [cequal $text ""] return
	addHist .say.e $text
}

#this is the normal saying
proc normsay { { text "" } } {

	if [cequal $text ""] {
		set text [.normsay.e get]
		.normsay.e delete 0 end
	}

	writeClientSock "say $text"
	
	statusBar "Said: '$text'..."

	if [cequal $text ""] return
	addHist .normsay.e $text
}


proc execCmd {{cmd ""}} {
	global fds 

	if [cequal $cmd ""] {
		set cmd [.cmd.e get]
		.cmd.e delete 0 end
	}
	if [cequal $cmd ""] return

	addHist .cmd.e $cmd

	# Check to see if we need to prepend admin_command
	#if [cequal [csubstr 0 6 $cmd] admin_] {
	#	if ![cequal [csubstr 0 13 $cmd] admin_command] {
	#		set cmd "admin_command $cmd"
	#	}
	#}

	statusBar "Sent '$cmd' to server..."
	writeClientSock $cmd
}


#several procs to make use of some admin-mod features
proc slapUser {} {
      global font userInfo
      set idx [.table.user.l curselection]
      if [cequal $idx ""] {
              statusBar "Select user to slap..." 0
              sleep 1
              return
      }

      set usertoslap  [lindex $userInfo(userid)  $idx]
      execCmd "admin_command admin_slap $usertoslap"
}

proc buryUser {} {
      global font userInfo
      set idx [.table.user.l curselection]
      if [cequal $idx ""] {
              statusBar "Select user to bury..." 0
              sleep 1
              return
      }

      set usertoslap  [lindex $userInfo(userid)  $idx]
      execCmd "admin_command admin_bury $usertoslap"
}

proc unburyUser {} {
      global font userInfo
      set idx [.table.user.l curselection]
      if [cequal $idx ""] {
              statusBar "Select user to un-bury..." 0
              sleep 1
              return
      }

      set usertoslap  [lindex $userInfo(userid)  $idx]
      execCmd "admin_command admin_unbury $usertoslap"
}

proc slayUser {} {
      global font userInfo
      set idx [.table.user.l curselection]
      if [cequal $idx ""] {
              statusBar "Select user to slay..." 0
              sleep 1
              return
      }

      set usertoslap  [lindex $userInfo(userid)  $idx]
      execCmd "admin_command admin_slay $usertoslap"
}

proc kickBanUser {} {
	global font

	proc banButton {} {
		global ban

		set state disabled
		set fg grey

		if $ban {
			set state normal
			set fg black
		}

		.kick.bt.l configure -fg $fg
		.kick.bt.e configure -state $state
		.kick.dl.l configure -fg $fg
	}

	global fds userInfo ban banuser banuid banwonid

	set idx [.table.user.l curselection]
	if [cequal $idx ""] {
		statusBar "Please select a user to kick or ban..." 0
		sleep 1
		return
	}

	set banuid   [lindex $userInfo(userid) $idx]
	set banuser  [lindex $userInfo(users)  $idx]
	set banwonid [lindex $userInfo(wonid) $idx]

	set ban 0

	set f [toplevel .kick]

	wm title $f "Kick / Ban $banuser"
	wm resizable $f 0 0
	wm group $f .
	wm transient $f .
	grab set $f 

	frame $f.ban
	label $f.ban.l -text "Ban User: " -width 25 -font $font(bold)
	checkbutton $f.ban.b -command banButton -variable ban
	set de "de"
	if $ban { set de "" }
	$f.ban.b ${de}select
	pack $f.ban.l -side left
	pack $f.ban.b -side left -expand y
	pack $f.ban

	frame $f.bt
	label $f.bt.l -text "Ban Time: " -width 20 -font $font(bold)
	entry $f.bt.e -width 5 -font $font(norm)
	$f.bt.e delete 0 end
	$f.bt.e insert 0 0
	pack $f.bt.l -side left
	pack $f.bt.e -side left -expand y -fill x
	pack $f.bt -expand y

	frame $f.dl
	label $f.dl.l -text "Time in minutes.  0 = forever" -font $font(bold)
	pack $f.dl.l -side left
	pack $f.dl -expand y

	banButton

	frame $f.buts
	button $f.buts.a -text "Apply" -command {
		if !$ban {
			execCmd "kick # $banuid"
		} else {
			set bantime [.kick.bt.e get]
			if !$bantime { execCmd "exec banned.cfg" }
			   execCmd "banid $bantime $banwonid kick"
			if !$bantime { execCmd "writeid" }
		}

		destroy .kick

		if !$ban {
			statusBar "Kicked $banuser!"
		} else {
			if !$bantime {
				statusBar "Wrote banned user $banwonid to banned.cfg."
			}
			statusBar "Kicked $banuser and banned for $bantime minutes!"
		}
	}

	button $f.buts.c -text "Cancel" -command {
		destroy .kick
	}

	label $f.buts.l -text "" -width 5 -font $font(bold)

	pack $f.buts.a -side left 
	pack $f.buts.l -side left
	pack $f.buts.c -side right 
	pack $f.buts

	centerWindow $f .

	tkwait window $f
}

proc stopServer {} {
	writeClientSock quit
}

proc now {} {
	return [clock format [clock seconds]]
}

proc getMaps {} {
	global mapList

	if ![info exists mapList] {
		writeClientSock MAPLIST
		vwait mapList
	}

	return $mapList
}
	
proc getAuth {} {
	global authString font

	set authString ""

	set f [toplevel .auth]

	wm title $f "Enter Authorization"
	wm resizable $f 0 0
	wm group $f .
	wm transient $f .


	frame $f.entry
	entry $f.entry.e -textvariable authString -width 40 -show * -font $font(norm)
	$f.entry.e delete 0 end
	$f.entry.e insert 0 $authString
	bind $f.entry.e <Return> {
		set authString [.auth.entry.e get]
		destroy .auth
	}

	pack $f.entry
	pack $f.entry.e

	centerWindow $f .

	grab set $f 
	focus $f.entry.e

	tkwait window $f
}

proc setFont { } {
	global font

	set size $font(size)
	set font(bold)  "-*-helvetica-bold-r-normal-*-$font(size)-*-*-*-*-*-*-*"
	set font(norm)  "-*-helvetica-medium-r-normal-*-$font(size)-*-*-*-*-*-*-*"
	set font(fixed) "-*-courier-medium-r-normal-*-$font(size)-*-*-*-*-*-*-*"
}


proc hlDebug { msg } {
	global debugFlag

	if $debugFlag {
		set fd [open hlgui.debug a]
		puts $fd $msg
		close $fd
	}
}

proc usage {argv argc} {
	popupError "
Usage: hlgui \[port \[addr\]\]

Where: 

port = The TCP port to use to connect to halfd.  This will override the port set in your configuration file.

addr = The IP address to use to connect to halfd.  This will override the port set in your configuration file.

DEBUG: argv='$argv', argc='$argc'
"
	exit 1
}

#######################################################################
# MAIN - the main gui program.
#
proc main { argc argv } {
   global lbxs adminOpts clientOpts gameId env fds vers sockFd authString
   global font logbg logfg macros env mapList

   frame .menubar -relief raised -borderwidth 3
   
   readConfig
   setFont

	if { $argc > 0 } {
		lassign $argv port addr junk argAuth

		if ![cequal [string first hlgui $port] -1] {
			lassign $argv foo port addr junk argAuth
		}

		if { ![ctype digit $port] && ![cequal port ""] } { 
			set port ""
			set addr ""
		} else {
			# Only arg is port
			set clientOpts(port) $port
			if ![cequal $addr ""] { set clientOpts(addr) $addr }
		}
	}

   # 
   # Menubar
   # 
   menubutton .menubar.file -text "File" -menu .menubar.file.menu -font $font(bold)
   # keep a column counter for more menus
   set column 0
   grid .menubar.file -in .menubar -row 0 -column $column
   incr column
   menu .menubar.file.menu -tearoff 0
   .menubar.file.menu add command -label "Connect" -command { connectToServer } -font $font(bold)
   .menubar.file.menu add command -label "Disconnect" -command { closeClientSock } -font $font(bold)
   .menubar.file.menu add command -label "Change Authorization" -command {
	getAuth
	if $connected {
		closeClientSock
		statusBar "Reconnecting..." 0
		update idletasks
		sleep 2
		update idletasks
		connectToServer
	}
	} -font $font(bold)
   .menubar.file.menu add separator
   .menubar.file.menu add command -label "Launch HL Server" -command {launchServer} \
 	-font $font(bold)
   .menubar.file.menu add command -label "Stop HL Server" -command {stopServer} \
	-font $font(bold)
   .menubar.file.menu add separator
   .menubar.file.menu add command -label "Exit" -command { exit 0 } -font $font(bold)

   menubutton .menubar.options -text "Options" -menu .menubar.options.menu \
	-font $font(bold)
   grid .menubar.options -in .menubar -row 0 -column $column
   incr column
   menu .menubar.options.menu -tearoff 0
   .menubar.options.menu add command -label "Client Options" \
	-command setClientOpts -font $font(bold)
   .menubar.options.menu add command -label "Configure Macros" \
	-command setMacros -font $font(bold)
   .menubar.options.menu add command -label "Reset Alert" \
	-command {
		.alert.text configure -text "<No Alerts>" -bg green
	} -font $font(bold)
   .menubar.options.menu add command -label "Purge Caches" \
	-command {
		catch { unset mapList }
	} -font $font(bold)
   .menubar.options.menu add separator
   .menubar.options.menu add command -label "Open a voting session" \
	-command {
		writeClientSock STARTVOTE
	} -font $font(bold)
   .menubar.options.menu add command -label "Disable voting" \
	-command {
		writeClientSock VOTEOFF
	} -font $font(bold)
   .menubar.options.menu add command -label "Enable voting" \
	-command {
		writeClientSock VOTEON
	} -font $font(bold)

#   menubutton .menubar.macros -text "Macros" -menu .menubar.macros.menu \
#	-font $font(bold)
#   pack .menubar.macros -side left
#   menu .menubar.macros.menu -tearoff 0

#	createMacroMenu


   # create an empty, expanding column
   grid columnconfigure .menubar $column -weight 1
   incr column
   menubutton .menubar.help -text "Help" -menu .menubar.help.menu -font $font(bold)

   grid .menubar.help -in .menubar -row 0 -column $column
   menu .menubar.help.menu -tearoff 0
   .menubar.help.menu add command -label "About" -command aboutGui -font $font(bold)
   .menubar.help.menu add separator
   .menubar.help.menu add command -label "Menu Bar" -command menuHelp -font $font(bold)
   .menubar.help.menu add command -label "Buttons" -command buttonHelp -font $font(bold)
   .menubar.help.menu add separator
   .menubar.help.menu add command -label "Conditions" -command cdm -font $font(bold)
   .menubar.help.menu add command -label "Warranty" -command warranty -font $font(bold)

	#we use the $k variable to detect the current row
	set k 0
	grid .menubar -in . -row $k -column 0 -sticky ew
	grid columnconfigure . $k -weight 1
	incr k

	# Server title
	frame .status
	label .status.halfd -text "<Not Connected>" -bg red -font $font(bold) \
		-anchor center
	label .status.hlds_l  -text "<Status Unknown>" -bg red -font $font(bold) \
		-anchor center
	grid .status.halfd -in .status -row 0 -column 0 -sticky ew
	grid .status.hlds_l -in .status -row 0 -column 1 -sticky ew
	grid columnconfigure .status 0 -weight 1
	grid columnconfigure .status 1 -weight 1
	grid .status -in . -row $k -column 0 -sticky ew
	incr k

	# Alert frame
	frame .alert
	label .alert.text -text "<No Alerts>" -bg green  -font $font(bold) \
		-anchor center
	grid .alert.text -in .alert -row 0 -column 0 -sticky ew
	grid columnconfigure .alert 0 -weight 1
	grid .alert -in . -row $k -column 0 -sticky ew
	incr k

	# Statistics
	frame .stats
	label .stats.tul -text "Conn / Active / Max:  0 / 0 / 0" -font $font(bold)
	label .stats.apl -text "Avg Ping: 0" -font $font(bold)
	label .stats.vote -text "Vote: <Unknown>" -font $font(bold)
	grid .stats.tul -in .stats -row 0 -column 0 -sticky ew
	grid columnconfigure .stats 0 -weight 1
	grid .stats.apl -in .stats -row 0 -column 1 -sticky ew
	grid columnconfigure .stats 1 -weight 1
	grid .stats.vote -in .stats -row 0 -column 2 -sticky ew
	grid columnconfigure .stats 2 -weight 1
	grid .stats -in . -row $k -column 0 -sticky ew
	incr k

	#frame .map -relief raised -bd 5
	frame .map -relief raised -bd 3
	label .map.t  -text "Map: <Unknown>"  -font $font(bold)
	label .map.tl -text "Approx time left: ??:??" -font $font(bold)
	foreach id "t tl" column "0 1" {
		grid .map.$id -in .map -row 0 -column $column
	}
	grid .map -in . -row $k -column 0 -sticky ew
	incr k

	set table [buildTable]
	grid $table -in . -row $k -column 0 -sticky nsew
	grid rowconfigure . $k -weight 1

	# Buttons
	frame .buts
	set t .buts
	button $t.kick -text "Kick/Ban User" -command kickBanUser -font $font(norm)
	button $t.cl -text "Change Map" -command {
		popupListBox "Select A Map" \
		15 [getMaps] changeLevel
	} -font $font(norm)
	button $t.tx -text "Get Text" -command { toggleText } -font $font(norm)
	button $t.nl -text "nslookup" -command { nsLookup } -font $font(norm)
	button $t.mac -text "Macros" -command { execMacro } -font $font(norm)
	button $t.refresh -text "Refresh" -command { writeClientSock REFRESH } -font $font(norm)
	#admin-mod buttons
	frame .buts2
	set s .buts2
	button $s.slap -text "Slap" -command { slapUser } -font $font(norm)
	button $s.bury -text "Bury" -command { buryUser } -font $font(norm)
	button $s.unbury -text "Un-Bury" -command { unburyUser } -font $font(norm)
	button $s.slay -text "Slay" -command { slayUser } -font $font(norm)

	set i 0
	foreach button "$t.kick $t.cl $t.tx $t.nl $t.mac $t.refresh" {
	    grid $button -in $t -row 0 -column $i -sticky ew
	    grid columnconfigure $t $i -weight 1
	    incr i
	}

	grid $t -in . -row $k -column 0 -sticky ew
	incr k

	grid $t -in . -row $k -column 0 -sticky ew
	incr k

	#admin-mod buttons
	set j 0
	foreach button "$s.slap $s.bury $s.unbury $s.slay" {
		grid $button -in $s -row 0 -column $j -sticky ew
		grid columnconfigure $s $j -weight 1
		incr j
	}
	
	#checks wether the admin-mod checkbox is checked or not and when it is 
	#adds the admin-mod buttons
	if $adminOpts(adminmod) {
		grid $s -in . -row $k -column 0 -sticky ew
		incr k
	}

	# Command entry
	frame .cmd
	label .cmd.l -text "Server Command: " -width 17 -font $font(bold)
	entry .cmd.e -font $font(norm)
	grid .cmd.l -in .cmd -row 0 -column 0
	grid .cmd.e -in .cmd -row 0 -column 1 -sticky ew
	grid columnconfigure .cmd 1 -weight 1
	grid .cmd -in . -row $k -column 0 -sticky ew
	incr k

	bind .cmd.e <Return> execCmd
	bind .cmd.e <Up> { getHist .cmd.e -1 }
	bind .cmd.e <Down> { getHist .cmd.e 1 }

	# Say (admin-mod's tsay)
	frame .say
	label .say.l -text "Broadcast:    " -width 17 -font $font(bold)
	entry .say.e -font $font(norm)
	grid .say.l -in .say -row 0 -column 0
	grid .say.e -in .say -row 0 -column 1 -sticky ew
	grid columnconfigure .say 1 -weight 1
	grid .say -in . -row 9 -column 0 -sticky ew
	if $adminOpts(adminmod) {
		grid .say -in . -row $k -column 0 -sticky ew
		incr k
	}

	bind .say.e <Return> say
	bind .say.e <Up> { getHist .say.e -1 }
	bind .say.e <Down> { getHist .say.e 1 }

	# Say (normal)
	frame .normsay
	label .normsay.l -text "Broadcast (normal):    " -width 17 -font $font(bold)
	entry .normsay.e -font $font(norm)
	grid .normsay.l -in .normsay -row 0 -column 0
	grid .normsay.e -in .normsay -row 0 -column 1 -sticky ew
	grid columnconfigure .normsay 1 -weight 1
	grid .normsay -in . -row $k -column 0 -sticky ew
	incr k

	bind .normsay.e <Return> normsay
	bind .normsay.e <Up> { getHist .normsay.e -1 }
	bind .normsay.e <Down> { getHist .normsay.e 1 }

	# Statusbar
	label .statusbar -relief raised -text "[now] Welcome to hlgui!" \
		-font $font(bold) -anchor center -bd 3
	grid .statusbar -in . -row $k -column 0 -sticky ew
	incr k


	# Logging area
	frame .info
	if $adminOpts(fixedfont) {
		set myFont $font(fixed)
	} else {
		set myFont $font(norm)
	}
	text .info.text -height $adminOpts(logheight) -state normal \
		-yscroll ".info.sy set" -font $myFont
	scrollbar .info.sy -command ".info.text yview" -width 15
	.info.text configure -background $logbg
	.info.text configure -foreground $logfg
	.info.text configure -state disabled

	# Make text select-able
	bind .info.text <1> {focus %W}

	grid .info.sy -in .info -row 0 -column 0 -sticky ns
	grid .info.text -in .info -row 0 -column 1 -sticky nsew
	grid columnconfigure .info 1 -weight 1
	grid rowconfigure .info 0 -weight 1
	grid .info -in . -row $k -column 0 -sticky nsew
	grid rowconfigure . $k -weight 1
	incr k

	serverDown

	# Resize foo
	#	wm resizable . 0 1
	#	grid .t  -sticky ns
	#	grid rowconfigure .t 0 -weight 2 -minsize 3
	#	grid rowconfigure . 0 -weight 1 
	#	wm resizable . 0 0

	wm title . $vers

	logText "[now] Welcome to hlgui!"
	logText "See Help->About for licensing and copyright details."

	update idletasks

	if [info exists argAuth] {
		set authString $argAuth
	} else {
		getAuth
	}

	catch { connectToServer }
}

proc bgerror { error } {
    global errorCode errorInfo font

	popupError "
An error occurred.  If you can reliably reproduce this, please post the
error to the forum at http://www.halfd.org, along with a description of the steps
you took to reproduce the issue.  Thanks!

($errorCode) : $errorInfo
"
}

#
# Initialize configurabel options
#
proc initvars {} {
	global expr tagbg tagfg logbg logfg ignorepong

        set expr(dead) "^\\*DEAD\\*"
        set expr(terrorist) "^\\(Terrorist\\)"
        set expr(counter-terrorist) "^\\(Counter-Terrorist\\)"
        set expr(server) "^<|\\[format %c 0x5b]ADMIN"
        set expr(team) "^\\(TEAM\\)"
        set expr(spec) "^\\*SPEC\\*"
		set expr(chat) "^L.*\"(\[^\"\]+)\" *(say) *\"(\[^\"\]+)\""

        set tagbg(chat) #FFFFFF
        set tagfg(chat) #000000
        set tagbg(dead) #000000
        set tagfg(dead) #DDDDDD
        set tagbg(spec) #CCCCCC
        set tagfg(spec) #000000
        set tagbg(terrorist) #883333
        set tagfg(terrorist) #FFFFFF
        set tagbg(counter-terrorist) #338833
        set tagfg(counter-terrorist) #FFFFFF
        set tagbg(server) #333388
        set tagfg(server) #DDDDDD                                                                                                             
	set logbg #666666
	set logfg #000000

	set ignorepong 0
}

proc checkForExtendedTcl {} {
	if { [string length [info commands cequal]] > 0 } { return }

	puts stderr "The Tk interpeter you are running is NOT an Extended Tk"
	puts stderr "(TkX) interpreter."
	puts stderr "hlgui requires TkX.  Please install TkX and try again."

	exit 1
}

#######################################################################
# set some variables for use in the procs and call MAIN
#
# LOAD LIBRARY HERE
checkForExtendedTcl

set lastMap ""
set font(size) 12
setFont

set svrInfo(name)    ""
set svrInfo(logFile) ""
set svrInfo(reconnect) 0
set svrInfo(kills) 0
set svrInfo(max) 0
set svrInfo(timeleft) 0
set svrInfo(player) 0
set svrInfo(vote) 0

set userInfo(users) ""

set notIdle 1

set gettingText 0

set vnum 2.20b18
set vers "hlgui $vnum"

initvars

# Close the Tk security hole
if [cequal [info commands send] send] {
	catch { rename send {} }
}
# tk appname hlgui ;# Debug only!

set debugFlag 0

#set dfd [open dbg w]
#cmdtrace on $dfd

main [llength $argv] $argv
