KillerBots

Check-in [43587e4ad2]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Initial checkin.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:43587e4ad23076b6354a6070d615824cd4a5faf3
User & Date: gerald 2013-07-22 20:27:51
Context
2013-08-09
21:22
Bring it upto speed. check-in: 64cb3a83d0 user: gerald tags: trunk
2013-07-22
20:27
Initial checkin. check-in: 43587e4ad2 user: gerald tags: trunk
20:19
initial empty check-in check-in: c162762cd7 user: gwlester tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Added KillerBots.tcl.



















































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh
# the next line restarts using tclsh \
exec tclsh "$0" ${1+"$@"}

##
## URL: http(s)://chiselapp.com/user/gwlester/repository/KillerBots
##

package require Tk

set baseDir [file dirname [info script]]

##
## Create the namespaces used
##
namespace eval ::gui:: {}
namespace eval ::gui::help:: {}


##
## Load the GUI and library files
##
foreach dir [list gui lib] {
    foreach file [] {
        source $file
    }
}

##
## Load the message files
##
foreach dir [list [file join $baseDir msgs] ./Xmlfile/msgs] {
    if {[file exists]} {
        ::msgcat::mcload $dir
    }
}

##
## Invoke the main procedure
##
main {*}$argv

Added lib/main.tcl.

Added msgs/C.msg.

Added msgs/ROOT.msg.

Added msgs/en.msg.