quakeforge/tools/Forge
Jeff Teunissen b60efa59f4 Bunch of changes. Project has been almost completely rewritten, and now
compiles. The rest are just the results of a simple conversion script I
wrote.
2001-06-03 04:52:36 +00:00
..
Documentation More typos, spelling corrections, and case fixes fed to the nearest handy fiend. 2001-02-22 00:15:03 +00:00
English.lproj
Headers Bunch of changes. Project has been almost completely rewritten, and now 2001-06-03 04:52:36 +00:00
Images
.gitignore New Preferences class -- it may not seem like it, but this is a Big 2001-05-08 08:38:34 +00:00
CameraView.m Compile fixes, we're getting a bit closer. 2001-03-02 07:01:51 +00:00
Clipper.m More typos, spelling corrections, and case fixes fed to the nearest handy fiend. 2001-02-22 00:15:03 +00:00
Dict.m
Entity.m
EntityArray.m
EntityClass.m Forge.m now builds cleanly. It probably doesn't work, I had to comment out 2001-03-02 09:13:35 +00:00
Forge.m New Preferences class -- it may not seem like it, but this is a Big 2001-05-08 08:38:34 +00:00
ForgeInfo.plist
Forge_main.m Compile fixes, we're getting a bit closer. 2001-03-02 07:01:51 +00:00
GNUmakefile Okay, that was stupid. ProjectCenter isn't good enough yet, so I'm back to 2001-02-27 21:18:27 +00:00
GNUmakefile.preamble.in Autoconf support for Forge. It's incomplete, but it's mostly working. 2001-05-07 09:44:17 +00:00
InspectorControl.m Forge: InspectorControl and KeypairView compile with no warnings now. 2001-03-16 19:19:24 +00:00
KeypairView.m Forge: InspectorControl and KeypairView compile with no warnings now. 2001-03-16 19:19:24 +00:00
Map.m Forge: Map and PopScrollView build now. 2001-05-07 09:43:25 +00:00
PopScrollView.m Forge: Map and PopScrollView build now. 2001-05-07 09:43:25 +00:00
Preferences.m New Preferences class -- it may not seem like it, but this is a Big 2001-05-08 08:38:34 +00:00
Project.m Bunch of changes. Project has been almost completely rewritten, and now 2001-06-03 04:52:36 +00:00
SetBrush.m more fix up work. Nothing totally right, yet, but getting closer. 2001-02-12 09:20:26 +00:00
TexturePalette.m whitespace. 2001-02-27 19:27:03 +00:00
TextureView.m more fix up work. Nothing totally right, yet, but getting closer. 2001-02-12 09:20:26 +00:00
Things.m more fix up work. Nothing totally right, yet, but getting closer. 2001-02-12 09:20:26 +00:00
UserPath.m more fix up work. Nothing totally right, yet, but getting closer. 2001-02-12 09:20:26 +00:00
XYView.m Bunch of changes. Project has been almost completely rewritten, and now 2001-06-03 04:52:36 +00:00
ZScrollView.m Bunch of changes. Project has been almost completely rewritten, and now 2001-06-03 04:52:36 +00:00
ZView.m Bunch of changes. Project has been almost completely rewritten, and now 2001-06-03 04:52:36 +00:00
acconfig.h Autoconf support for Forge. It's incomplete, but it's mostly working. 2001-05-07 09:44:17 +00:00
bootstrap Autoconf support for Forge. It's incomplete, but it's mostly working. 2001-05-07 09:44:17 +00:00
cmdlib.c Update cmdlib.c to be in sync with qfcc 2001-02-27 20:44:53 +00:00
configure.in Autoconf support for Forge. It's incomplete, but it's mostly working. 2001-05-07 09:44:17 +00:00
jrbase1.map
mathlib.c
misc.m Bunch of changes. Project has been almost completely rewritten, and now 2001-06-03 04:52:36 +00:00
quake.qpr
readme.txt
render.m
triggers.qc More typos, spelling corrections, and case fixes fed to the nearest handy fiend. 2001-02-22 00:15:03 +00:00

readme.txt

5/18/96

This is a dump of the current source code for QuakeEd, our map editing
application.

This does not include everything necessary to build maps.  There are graphics
files, prog files, and other utilities needed.  I plan on releasing a full
development set of tools after the game ships.  This is just intended to help
out anyone working on their own map editor.

This is a NEXTSTEP application, so hardly anyone is going to be able to use the
code as is.  This is not an OPENSTEP application.  It doesn't even use the
foundation kit, so porting to gnustep or openstep-solaris/mach/nt would not be
trivial.

There are lots of mixed case and >8 character filenames, so I'm using unix
gnutar (compressed) format.

Because most people won't have access to a NEXTSTEP machine, I took pictures of
some of the more important stuff from interface builder:

mainwindow.tiff	: a screenshot of the primary window
inspectors.tiff	: a screenshot of the important inspector views
help.txt	: a dump of the (minimal) help inspector's contents.

I included some sample data to help you follow the code:

quake.qpr	: our current project file
jrbase1.map 	: a sample map
triggers.qc	: a sample qc source file that includes some /*QUAKED comments

There will not be any major changes to this code base.  I am eagerly looking
forward to writing a brand new editor for windows NT + open GL as soon as Quake
ships.

This application was really not a very good fit for NEXTSTEP.  The display
postscript model fundamentally doesn't fit very well with what we need here --
if you run in an 8 bit color mode, the line drawing runs at an ok speed, but the
texture view goes half the speed it should as it dithers from 24 bit color down
to 8 bit.  If you run in 24 bit color mode, you get less screen real estate and
significantly slower line drawing as a 3 megabyte XY view is flushed.  Sigh.  If
anyone does actually run this on NEXTSTEP be advised that you want a fast
machine.  I never had the time to properly optimize QuakeEd.

The texture view rendering code in here is crap.  Anyone coding a new editor is
strongly advised to just use an available optimized library, like open GL or
direct 3D.


John Carmack
Id Software
johnc@idsoftware.com