File: README

package info (click to toggle)
qtads 2.1.3-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 11,356 kB
  • sloc: cpp: 125,644; ansic: 24,952; makefile: 11
file content (121 lines) | stat: -rw-r--r-- 4,393 bytes parent folder | download
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
QTads - A multimedia interpreter for Tads games.
Written and maintained by Nikos Chantziaras.  Based on Mike Roberts'
portable reference implementation of Tads.

This file contains an overview of QTads.  Other documentation files in
the distribution include:

    AUTHORS
      People who wrote QTads' code.

    BUGS
      A list of known bugs.  You shouldn't report them.

    COPYING
      The GNU General Public License (GPL).  QTads is distributed under
      the terms and conditions of this license.  (Note that this file
      might be missing in the Debian distribution; it can be found at
      /usr/share/common-licenses/GPL-2 or in the "Help->About" menu of
      the program.)

    HTML_TADS_LICENSE
      The HTML TADS Freeware Source Code License.  QTads can be
      distributed and modified under the terms of this license if you
      cannot or don't want to accept the terms of the GPL.

    INSTALL
      Installation and usage instructions.

    NEWS
      Contains the list of changes between QTads versions.

    qtads.6.gz
      Manual page.

The newest version of QTads can be downloaded from its homepage at:

    http://qtads.sourceforge.net

Previous versions can be found at the project page:

    http://sourceforge.net/projects/qtads


About Tads and QTads
====================

QTads is a so called "interpreter" for games created with the Text
Adventure Development System, or "Tads" for short, a C-like object
oriented programming language for authoring Interactive Fiction
(similar to the Infocom or Legend Entertainment games, like "Zork").
Yes, we are talking about text adventures here.

The Tads compiler creates executables for the Tads Virtual Machine (the
"Tads VM").  QTads is an implementation of this Virtual Machine; it
runs Tads VM executables.  One can also say that QTads is a Tads VM
emulator.  This is similar to Java; the Java compiler creates JavaVM
programs which must be executed with a JavaVM implementation.

Both Tads 2 as well as Tads 3 games are supported.

QTads is not written from scratch; it uses Mike Roberts' portable
reference implementations of the two Tads VMs; the T2 VM (written in C)
and T3 VM (written in C++).

For more information about Tads, visit its home page:

    http://www.tads.org


On what systems does it run?
============================

Theoretically, it should run on *any* system for which a Qt-port exists
(many Unices, including Linux and Mac OSX, Windows, Haiku, even embedded
devices like cell phones and PDAs).  The systems it is known to run are
Linux, Mac OS X 10.5 and newer, MS Windows XP/Vista/7 and Haiku.


What's Interactive Fiction?
===========================

Well, this is just a poor README file and therefore not the appropriate
place for an introduction to Interactive Fiction.  For more information
about Interactive Fiction (or "IF" for short), just go to the Tads page
(see above) and follow some links.  Or search for "interactive fiction"
in Google; you'll be amazed about how many results you'll get.  And
you'll be even more amazed about how active the IF community is.

At qtads.sourceforge.net you can find further information about online
places where the community gathers and where to find games.


I don't like QTads.  It sucks.
==============================

Then help me improve it.  Send me suggestions and bug reports, or even
code if you know C++ and Qt.  Now!  Don't be afraid to do it.  Thank
you.


Copyright
=========

QTads is Copyright (C) 2012 by Nikos Chantziaras.

QTads is free software; you can redistribute it and/or modify it either
under the terms of the HTML TADS Freeware Source Code License as
appearing in the file HTML_TADS_LICENSE included in the packaging of
this file, or under the terms of the GNU General Public License as
published by the Free Software Foundation and appearing in the file
COPYING included in the packaging of this file; either version 2 of the
License, or (at your option) any later version.

QTads 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