quakeforge/tools/Forge/Bundles/MapEdit
2010-09-26 13:50:21 +09:00
..
MapEdit.gorm Get help working (for what it is worth). 2010-09-26 13:50:21 +09:00
CameraView.h Modernize the camera eye glyph drawing. 2010-09-26 13:50:21 +09:00
CameraView.m Get the keyboard controls working. 2010-09-26 13:50:21 +09:00
Clipper.h
Clipper.m Do not use PS* functions. 2010-09-26 13:50:21 +09:00
Dict.h
Dict.m
DictList.h Get map loading sort-of working. 2010-09-26 13:50:18 +09:00
DictList.m Get map loading sort-of working. 2010-09-26 13:50:18 +09:00
Entity.h Get map loading sort-of working. 2010-09-26 13:50:18 +09:00
Entity.m Entity loading from maps seems to work. 2010-09-26 13:50:19 +09:00
EntityClass.h Get map loading sort-of working. 2010-09-26 13:50:18 +09:00
EntityClass.m Get QUAKED comments working. 2010-09-26 13:50:19 +09:00
GNUmakefile Get help working (for what it is worth). 2010-09-26 13:50:21 +09:00
GNUmakefile.bundle
GNUmakefile.preamble
help.txt
InspectorControl.h Get help working (for what it is worth). 2010-09-26 13:50:21 +09:00
InspectorControl.m Get help working (for what it is worth). 2010-09-26 13:50:21 +09:00
jrbase1.map
KeypairView.h
KeypairView.m KeypairView now seems to work properly. 2010-09-26 13:50:21 +09:00
Map.h Get map loading sort-of working. 2010-09-26 13:50:18 +09:00
Map.m Don't segfault when unable to open a file. 2010-09-26 13:50:20 +09:00
misc.m
PopScrollView.h
PopScrollView.m slow progress in getting things to work 2010-09-26 13:50:20 +09:00
Preferences.h
Preferences.m Get progs source scanning working. 2010-09-26 13:50:18 +09:00
Project.h
Project.m Correct alert panel handling. 2010-09-26 13:50:20 +09:00
qedefs.h
quake.qpr
QuakeEd.gmodel
QuakeEd.h Get some screen updates happening. 2010-09-26 13:50:18 +09:00
QuakeEd.m Hopefully fix the flush control and second screen placement. 2010-09-26 13:50:21 +09:00
QuakeEd_main.m Get some screen updates happening. 2010-09-26 13:50:18 +09:00
readme.txt
render.h
render.m
SetBrush.h
SetBrush.m Get the Z checker working. 2010-09-26 13:50:21 +09:00
Storage.h
Storage.m
TexturePalette.h Work around a method type mismatch in GNUstep. 2010-09-26 13:50:21 +09:00
TexturePalette.m Get TextureView working. 2010-09-26 13:50:21 +09:00
TextureView.h
TextureView.m Remove debugging code. 2010-09-26 13:50:21 +09:00
THING+NSArray.m Get map loading sort-of working. 2010-09-26 13:50:18 +09:00
Things.h
Things.m Finish the gorm file, for certain values of finished. 2010-09-26 13:50:19 +09:00
XYView.h Get scaling working in the Z view as well. 2010-09-26 13:50:20 +09:00
XYView.m Hopefully fix the flush control and second screen placement. 2010-09-26 13:50:21 +09:00
ZScrollView.h
ZScrollView.m slow progress in getting things to work 2010-09-26 13:50:20 +09:00
ZView.h Do not use PS* functions. 2010-09-26 13:50:21 +09:00
ZView.m Hopefully fix the flush control and second screen placement. 2010-09-26 13:50:21 +09:00

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