File: release_notes.adoc

package info (click to toggle)
wadc 2.1%2Bgit3aac3015-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,312 kB
  • ctags: 643
  • sloc: java: 2,771; ansic: 1,526; xml: 125; makefile: 33; sh: 13
file content (299 lines) | stat: -rw-r--r-- 10,878 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
= WadC Release Notes
Jonathan Dowland <jon@dow.land>; Wouter van Oortmerssen
:toc:
:toc-placement!:
:toclevels: 5
:toc-title:
:homepage: https://jmtd.net/wadc/

This lists changes made in each release. For a description of all
current features, see link:reference.adoc[the Reference].

== Table of Contents

toc::[]

== Dev

Not yet released.

== 2.1

Version 2.1 of WadC is dedicated to the memory of Professor Seymour Papert
(1928-2016), co-inventor of the LOGO programming language.

=== Core program changes

 * Internationalisation support.
   * Partial french translation adapted from @nekrofage. Thanks!
 * The random seed is printed when you first execute a script. This
   means if something cool happens, you can make a note of the seed
   and reproduce it.
 * Stack traces are now divided by newlines rather than space characters.
 * It is now much more convenient to generate maps for the original Doom,
   Heretic, Hexen and Strife, in addition to Doom II.
 * The GUI now has basic undo/redo support for text editing.
 * The GUI's default size is now twice as large.
 * You can now write numbers in hexidecimal by prefixing them with '0x'.
   Only positive numbers are supported at the moment (use `mul(-1,0xabc)`
   as a workaround if you must)

=== Example scripts

 * `logo.wl`: draws the letters "WadC".
 * The "pipes" stuff in examples/beta continues to evolve and drive
   WadC development.
 * `doom_ex.wl`, `htic_ex.wl`, `hexen_ex.wl`, `strife.wl`: very simple
    test maps that demonstrate Doom #1/Heretic/Hexen/Strife support
 * `polyobj.wl`: example of Hexen polyobjects (swinging doors, etc.)
 * `boom.wl`: Examples of Boom generalised linedef and sector types.
 * `counter.wl`: a binary ripple counter for Boom
 * `2countrev.wl`: a modified `counter.wl`, showing how it might be
    used as part of a real map.

=== Documentation

 * The beginnings of a link:tutorial.adoc[proper tutorial].
 * A basic link:https://redmars.org/wadc/examples.html[gallery of WadC examples]
 * WAD files of the examples are periodically generated, nodes built and uploaded
   to <https://redmars.org/wadc/examples/>

=== Language features

`hexenformat`:: forces the output map to be in Hexen format (suitable for
                use with either Hexen or ZDoom)
`mapname`::     sets the map name to be generated. The default is `MAP01`.
                New libraries included in this release set sensible defaults
                for other doom-engine games.
`and`, `or`, `not`:: bitwise operators
`setthingflags`, `getthingflags`:: get and set the flags used for new things
`setlineflags`, `getlineflags`:: as above, but for lines
`thingangle`:: create a thing with a supplied angle value

==== Library additions/deletions

 * `water.h` has been enhanced so that you can manage multiple water-effects
   in the same map.
 * Some built-ins have been removed from the language and converted into
   WadC library routines: `deaf`, `easy`, `hurtmeplenty`, `ultraviolence`
   and `friendly` (see `thingflags.h`)
 * Angle constants have been added to `standard.h`: `angle_east`, `angle_ne`,
   `angle_north`, `angle_nw`, `angle_west`, `angle_sw`, `angle_south` and
   `angle_se`.

===== New libraries

`control.h`::  control sector management (broken out from `water.h`)
`doom.h`, `heretic.h`, `hexen.h`, `strife.h`:: sensible defaults and
       thing definitions for Doom (#1), Heretic, Hexen and Strife
`thingflags.h`:: Definitions for common flag values for all four games
                 as well as implementations of `deaf`, `easy`,
                 `hurtmeplenty`, `ultraviolence` and `friendly`.
`math.h`:: some mathematic routines (bit shifts and `pow` so far)
`boom.h`:: Routines for building Boom generalised linedefs and sectors,
           some constants for use with these routines.

==== Bug fixes

 * A long-standing bug with splitting lines has been fixed,
   where one line is drawn in the opposite direction to the
   first. When this happened you got the misleading error
   "Sidedef already assigned to sector". Various example maps
   had contortions to avoid this situation which now works.
 * You can now use `popsector` more than once. This means you
   can have an inner sector within an inner sector within an
   outer one, to an arbitrary depth.
 * `water.h` can now be used with inner-sectors and the water
    light level value is honoured.
 * `water.h` can be used to decorate the very first sector you
    draw.
 * The control sectors that `water.h` draws are now properly
   to the right of the cursor, rather than to the left, so it
   plays nicely with other `control.h` users.
 * The GUI is now listed as "WadC" rather than "MainFrame" in
   various places such as the Mac OS X menu bar.
 * If you use the choice operator before a `seed` operation,
   that seed value affected the choice operator when re-running
   the script.
 * You can freely mix `linetype` and `linetypehexen` in Zdoom
   Hexen-format maps. Previously, some of the argument flags set
   with `linetypehexen` were not cleared by `linetype`.
 * The tech-preview CLI will correctly embed the WadC source in
   generated WADs, just like the GUI.
 * The GUI code to write-out WadC files when you save has been
   changed to write UTF-8. Previously it was writing the first
   byte of UTF-8 only, so any multibyte characters were getting
   corrupted.

=== Development stuff

 * The tech-preview CLI has been renamed to WadCCLI.
 * WadC is now built using Maven. This has some implications:
 
  ** The source has all moved around and we have an obscene number
      of subdirectories. Sigh. There are a few convenience symlinks
      to make life easier.
  ** The program's version is now embedded as a property rather
      than being an auto-generated Java class.
 * There's a very hacky, experimental regression test suite in
   `tests/`.

== 2.0

Released 22^nd^ September 2015.

=== Core program changes

==== Distribution and runtime requirements

The WadC binary distribution is now a JAR file. On most platforms,
simply double-clicking on the JAR should launch the program. WadC
is no longer sensitive to the directory from which it is launched.

WadC now requires Java version 1.8 or newer to run or build. It has been
tested only with

* java version "1.8.0_45"
* javac 1.8.0_45

==== Sneak-peek: command-line interface

There is a very early-stages command-line interface now available. To
launch it, you need to run

    java -cp wadc.jar org.redmars.wadc.WadCC path/to/input.wl

It will attempt to parse, run and write out to path/to/output.wad. Be
aware that this is alpha quality, consider this a tech preview :)

==== configuration file syntax and location

wadc.cfg is no longer written/read from the current working directory. On
Windows, it's found at `%USERHOME%/.wadc/wadc.cfg`, on UNIX platforms it
looks in `$HOME/.wadc`. Examples

 c:\Users\Your Name\.wadc
 /Users/Jon/.wadc
 /home/you/.wadc

The configuration option `doomcmd` no longer exists. It has been replaced
with

`doomexe`::  path to your preferred doom executable
`doomargs`:: arguments to pass to your preferred doom executable, +
             separated by whitespace. This should end with '`-file`'.

The reason for this is to allow you to supply a `doomexe` containing
whitespace in the path.

If you have defined any of `twad1`, `twad2` or `twad3` in your
configuration, they will be added to the doom command line, immediately
after your `doomargs`, and before the path to the WAD you are building.

==== Embedded WadC code

WadC now writes out the source code for your level to the generated WAD
in a `WADCSRC` lump. Any locally included files are also included, but
standard library files (from within the Jar) are not.

If you define any new textures, WadC will write a `TEXTURE2` lump.  If you add
any patches to new textures which are not in your IWAD, A new `PNAMES` lump
will be generated and written. You need to have specified a path to an IWAD
file in your configuration for this to work.

=== Language features

`die(foo)`::   prints foo, then terminates.
`cat(a, b)`::  concatenates a and b
`seed(x)`::    seeds the random-number generator for reproducibility
`newtag`::     generate and return a new unique tag number
`texture`::    begins the definition of a new texture, to combine with `addpatch`
`addpatch`::   adds a patch to the currently defined texture
`deaf`::       `mute` has been renamed to `deaf`.
`getbot`, `getmid`, `gettop`, `getfloor`, `getceil`::    Accessor functions for the current texture or flat in use

==== Library additions

`lisp.h`::  lisp-style lists (broken out from `examples/lisp.wl`)
`water.h`:: Boom deep water tools

within `standard.h`:

 * `inc` and `dec`, convenient for increment/decrementing a variable
 * `fori` and `i`, the `for` loop but you can read the value of the iterator

==== New examples

`textures.wl`:: demonstrating the texture features
`llevels.wl`::  test WAD using texture features
`water.wl`::    demonstrating the Boom water helpers
"beta"::        directory containing my unfinished stuff

=== Bug fixes

Fix map view zooming with mouse clicks on non-Windows platforms.

The paths to the file you are editing, the corresponding generated WAD file,
your preferred Doom executable and any texture WADs you have defined can now
contain spaces or other special characters.

== 1.2

Released December 2011.

* First release by Jon Dowland.
* Doom features:
  - `friendly` flag - toggle boom friendly monsters
  - `impassable` flag - toggle impassable 2s lines
  - `midtex` flag - toggle middle-textures on 2s lines
* new examples:
  - `1.2_features.wl` - demo the new features above
  - `entryway.wl` - a recreation of Doom 2 MAP01 in WadC, thanks GreyGhost

== 1.1

Released July 2001.

* Doom features:
  - auto texturing (!)
  - zdoom/hexen wad format support, slopes etc.
  - "world coordinates" xoff alignment
  - explicit sector assignment
* UI features:
  - improved mouse editing & preview window
* language features:
  - eager evaluation of function arguments
  - global variables and objects
  - stacktraces in runtime error messages
  - new math functions: sin/asin
* distribution features:
  - more examples / useful include files
  - many small enhancements/fixes

== 1.0: first public release

Released October 2000.

* UI features:
  - generating code by drawing lines with the mouse (!)
  - zooming & panning
  - map rendering enhancements
* Doom features:
  - automatic splitting of overlapping lines (!)
  - curves with automatic texture alignment
  - inner sectors
  - thing/line/sector types
  - arches (experimental)
  - tag identifiers
* language features:
  - include files (with many Doom constants supplied)
  - a random choice operator
* distribution features:
  - more examples etc.
  - comes with source (GPL)

== 0.9: initial beta

Dates from around July 1999.

some may have seen this.