Playable mapgen - randomly-generated maps

Discuss anything not covered by any of the other categories.
qbism
Posts: 1236
Joined: Thu Nov 04, 2004 5:51 am
Contact:

Playable mapgen - randomly-generated maps

Post by qbism »

Well, I've been messing with this randomly-generated map mod on-and-off since the 2006 Qexpo. (And this is probably the first post I've started since 2003.) Not a polished product but good enough to share as an interesting concept. It's a mod based on Preach's mapgen. Advancements-

1. Playable with monsters, items, etc. The ogre and shells are examples in the code and maps. Multiplayer might be possible.

2. Map tiles based on a compact module provide unique spaces with a handful of shapes.

The original mapgen by Preach is not required to run, but a good idea to install it in a separate mod directory, try it out, and read the docs. That readme is needed to produce a new map.

Multiple obvious bugs include unlit monsters, sometimes monsters spawn below floor, etc. etc.

Download w/ map source (Quark) and qc source:
http://qbism.com/index.php?action=media;sa=item;in=9 (corrected link 2/1/10)

Search for "qbism" and "mapgen" in the source. qc libraries: Frikbot is there for multiplayer testing, extras for func_water, gyro just place-holder for now.

Preach's mapgen:
http://qexpo.quakedev.com/booth.php?id=32&page=113

shots:
Image

Image

Image
Last edited by qbism on Mon Feb 01, 2010 9:35 pm, edited 2 times in total.
ceriux
Posts: 2230
Joined: Sat Sep 06, 2008 3:30 pm
Location: Indiana, USA

Post by ceriux »

looks pretty cool, too bad the textures cant be done right =/
Chip
Posts: 575
Joined: Wed Jan 21, 2009 9:12 am
Location: Dublin, Ireland
Contact:

Nice

Post by Chip »

It might be working for some 'no-subject' maps, or if you have a lack of inspiration. After all, the resulting map is editable, right?

So you can cut, copy it in another map, and add new textures. I might give it a try.

The first one would look interesting, with the right textures.
QuakeWiki
getButterfly - WordPress Support Services
Roo Holidays

Fear not the dark, but what the dark hides.
Spike
Posts: 2914
Joined: Fri Nov 05, 2004 3:12 am
Location: UK
Contact:

Post by Spike »

mmm, r_floortexture / r_walltexture. yay for quakeworld hacks that change the textures based on surface angle.

But yeah, the texturing needs some work.
leileilol
Posts: 2783
Joined: Fri Oct 15, 2004 3:23 am

Post by leileilol »

Spike wrote:mmm, r_floortexture / r_walltexture. yay for quakeworld hacks that change the textures based on surface angle.
.
STOP COMPLAINING its the only way pro gamers can win!
i should not be here
MeTcHsteekle
Posts: 399
Joined: Thu May 15, 2008 10:46 pm
Location: its a secret

Post by MeTcHsteekle »

... i like the last screen shot its like, ...bah
bah
qbism
Posts: 1236
Joined: Thu Nov 04, 2004 5:51 am
Contact:

Post by qbism »

Texturing works like standard map, so that aspect could be improved readily. Textures and lightmapping on edges will touch other tiles... something to consider.

Look at Preach's screenshots and maps for texture and lighting examples. It is likely that those maps will be playable.
LordHavoc
Posts: 322
Joined: Fri Nov 05, 2004 3:12 am
Location: western Oregon, USA
Contact:

Re: Playable mapgen - randomly-generated maps

Post by LordHavoc »

qbism wrote:Well, I've been messing with this randomly-generated map mod on-and-off since the 2006 Qexpo. (And this is probably the first post I've started since 2003.) Not a polished product but good enough to share as an interesting concept. It's a mod based on Preach's mapgen. Advancements-
That's cool.

I wonder how it looks with realtime lighting in darkplaces, although it would have to generate a .ent file for the map during worldspawn using FRIK_FILE to write it out, which would provide all the static lights, or you could spawn dlights.

I was working on such a map generator based on stitching together prefab room pieces but never finished it, and it was designed to make .map files and compile them, not instance models.
qbism
Posts: 1236
Joined: Thu Nov 04, 2004 5:51 am
Contact:

Re: Playable mapgen - randomly-generated maps

Post by qbism »

LordHavoc wrote:could spawn dlights.
That sounds like a good way to visually blend tiles together and light up the monsters. A "func_dlight" with a maplip (maplip determines chance of spawning) would further add variety to spaces.
qbism
Posts: 1236
Joined: Thu Nov 04, 2004 5:51 am
Contact:

Post by qbism »

dlight spawning works. Instead of creating a func_dlight I tacked it onto func_wall to get brushes with the light.

Change to func_wall_start in attachments.qc:

Code: Select all

void(entity refatt, entity targ) func_wall_start
{
	targ.movetype = MOVETYPE_PUSH;	// so it doesn't get pushed by anything
	targ.solid = SOLID_BSP;
	targ.alpha = refatt.alpha;
	setmodel(targ, refatt.model);
	//qbism add dlight properties
	targ.light_lev = refatt.light_lev; // radius (does not affect brightness), typical value 350
	targ.color = refatt.color; // color (does not affect radius), typical value '1 1 1' (bright white), can be up to '255 255 255' (nuclear blast)
	targ.style = refatt.style; // light style (like normal light entities, flickering torches or switchable, etc)
	targ.pflags = refatt.pflags; // flags (see PFLAGS_ constants)

};
add dlights extension to defs from dpextensions.qc, a chunk that starts like this:

Code: Select all

//TENEBRAE_GFX_DLIGHTS
//idea: Tenebrae
//darkplaces implementation: LordHavoc
//fields:
.float light_lev; // radius (does not affect brightness), typical value 350
.
.
.
Finally, add fields to func_wall entity, example:

Code: Select all

 "light_lev" "280"
 "color" "3 5 4"
 "style" "1"
 "pflags" "128"
 "origin" "864 12 90"
I'm working on a new map with this to see how it pans out.
LordHavoc
Posts: 322
Joined: Fri Nov 05, 2004 3:12 am
Location: western Oregon, USA
Contact:

Post by LordHavoc »

Not sure why you chose to embed that in a func_wall entity, it works quite well as a point entity (like a monster).
qbism
Posts: 1236
Joined: Thu Nov 04, 2004 5:51 am
Contact:

Post by qbism »

Func_wall so light source can include geometry. Those are supposed to be sconces on the back wall in this pic. HFX eX textures BTW.
Image
xaGe
Posts: 465
Joined: Wed Mar 01, 2006 8:29 am
Location: Upstate, New York
Contact:

Post by xaGe »

..For a generated map the lighting looks ok to me. The whole thing looks better than previous examples posted.
qbism
Posts: 1236
Joined: Thu Nov 04, 2004 5:51 am
Contact:

Post by qbism »

Dynamic lights improve the illusion of a seamless world, add some drama, and highlight normal maps. Compiled lighting becomes low-level ambient. Compiled lighting must be uniform (bland) anyway to reduce contrast at seams.

Currently working on a new tileset, probably spent an hour texturing it rather than zero time like previous sets. It will still be mostly conceptual.

Not even the mapper knows if there's an ogre around the corner...
Image
goldenboy
Posts: 924
Joined: Fri Sep 05, 2008 11:04 pm
Location: Kiel
Contact:

Post by goldenboy »

Nice try. Make a usable terrain generator that automatically places trees, roads, boulders, caves, and moats, and things like dragon teeth, and ruins, and I'll be impressed.

The problem with a script designing actual architecture is, it can't have any ideas or visions, which is a systematic problem.

It can't think in pictures like (some) humans do.
Post Reply