Jump to content

Recommended Posts

Posted

Nice!!

 

The outdoor shots remind me of the Wood elf city in Greater Feydark in Everquest

|=-=------=-=|

happycheeze.deviantart.com

 

Moddb

 

Gamers Outreach, a nonprofit that uses videogames to raise money for chairty.

|=-=------=-=|

Posted

I love the waterfall. I'm having a few problems in my own WIP with one that I'm tempted to just make my own texture for it. I assume that's what you had to do, as well.

yay seuss crease touss dome in ouss nose tair

Posted
I love the waterfall. I'm having a few problems in my own WIP with one that I'm tempted to just make my own texture for it. I assume that's what you had to do, as well.

 

Nope I created a patch shaped like a waterfall, and applied the "wasser" texture, and stretched it out so it's pretty convincing that it's running water. I also modified a waterfall particle to drop water down.

I always assumed I'd taste like boot leather.

 

Posted
I love the waterfall. I'm having a few problems in my own WIP with one that I'm tempted to just make my own texture for it. I assume that's what you had to do, as well.

 

I've committed my waterfall particle to SVN, you can find it in particles\ah_waterfall.prt and also particles\ah_waterfall_larger.prt if you want to use them. I want to know how the other member got his waterfalls to glow green.

I always assumed I'd taste like boot leather.

 

Posted
nice shots! there are some logic and texture mistakes but I'm sure you are aware of them ;)

 

Logic? This is fantasy lol, logic has nothing to do with it. But I'm curious as to what you are referring too, could you please elaborate?

I always assumed I'd taste like boot leather.

 

Posted

hehe you are right in Thief world :) logically what seem to me wrong are torches. Maybe that's my habit to see torches in corridors of castles and in streets walls, but here you used them in living room. Especially well decorated living room will be better to use chandelior or oil lamb. Besides that fire of torhes soot the wooden ceiling. But I don't think that people look at these detail, so nevermind.. :D

Posted
hehe you are right in Thief world :) logically what seem to me wrong are torches. Maybe that's my habit to see torches in corridors of castles and in streets walls, but here you used them in living room. Especially well decorated living room will be better to use chandelior or oil lamb. Besides that fire of torhes soot the wooden ceiling. But I don't think that people look at these detail, so nevermind.. :D

 

Oh that, I agree completely, the torches are just placeholders for light. Also I haven't gotten to the point where I can add decals yet.

I always assumed I'd taste like boot leather.

 

Posted

It seems that you have a nice terrain outside. I dont have any idea how to do those natural roughnesses, is there any topic or wiki article about this matter?

Posted
It seems that you have a nice terrain outside. I dont have any idea how to do those natural roughnesses, is there any topic or wiki article about this matter?

 

I wrote an article on how to generate terrain using Quake 3's Gensurf, and using another tool to convert it to Doom 3 map format.

I always assumed I'd taste like boot leather.

 

Posted
None of those will work with Doom 3's map format AFAIK anyways.

 

Can't you use a terrain in Doom3 as a mesh? Afaik they have the ability to export the terrain as a .obj file.

Posted

That would be a model, not really a good idea, as the entire model is rendered if you are within it's bounds, which you always will be if it's terrain. I've been through that.

I always assumed I'd taste like boot leather.

 

Posted (edited)
That would be a model, not really a good idea, as the entire model is rendered if you are within it's bounds, which you always will be if it's terrain. I've been through that.

 

can't you just cut the terrain in peaces, to get ride of that problem? It would be more them a model and so easier to cull.

 

edit: I hope i'm not being a dick, i just like to know this stuff.

Edited by HMart
Posted
can't you just cut the terrain in peaces, to get ride of that problem? It would be more them a model and so easier to cull.

 

edit: I hope i'm not being a dick, i just like to know this stuff.

 

No problem, I understand, I'm assuming you mean that we could create a large piece of terrain and in a 3d modeling program such as 3DStudioMax or Lightwave, chop it up into several pieces and export each piece as a separate model.

That also has it's own problems, for example; texturing. Right now I can apply any texture at any time to each piece of terrain as they are only a bunch of patches. To do so for a model would require a new skin file or perhaps changing the def file for the model.

 

Unless I'm not understanding what you mean.

I always assumed I'd taste like boot leather.

 

Posted
No problem, I understand, I'm assuming you mean that we could create a large piece of terrain and in a 3d modeling program such as 3DStudioMax or Lightwave, chop it up into several pieces and export each piece as a separate model.

That also has it's own problems, for example; texturing. Right now I can apply any texture at any time to each piece of terrain as they are only a bunch of patches. To do so for a model would require a new skin file or perhaps changing the def file for the model.

 

Unless I'm not understanding what you mean.

 

Yes i mean that and texturing would be very tricky indeed. But maybe the work would be worth it if performance and look of the terrain is good. :)

 

By the way why aren`t you guys using the Megatexturing ability of the Doom3 engine?

Posted

Megatexturing works for the most part; I gave it a try a few weeks ago in a outdoors test map, but who really wants to shove a HUGE 2048(x2) or 4086(x2)texture in their RAM?

 

If I render random RGB noise in a 4086x4086 texture (Worst-case scenario for compression's sake), the tga ends up being 49,024 KB! Holy cow! I know my video card won't be able to handle much more than THAT.

 

Think about it: a 2048 diffuse map (12,318 KB) + a 2048 normal map (12,318 KB) + a 1024 Specular Map (4,104 KB) = 28740 KB. That's big. For real. Sure, you can convert them to DDS, but that's still an awful large chunk of RAM.

yay seuss crease touss dome in ouss nose tair

Posted
Megatexturing works for the most part; I gave it a try a few weeks ago in a outdoors test map, but who really wants to shove a HUGE 2048(x2) or 4086(x2)texture in their RAM?

 

If I render random RGB noise in a 4086x4086 texture (Worst-case scenario for compression's sake), the tga ends up being 49,024 KB! Holy cow! I know my video card won't be able to handle much more than THAT.

 

Think about it: a 2048 diffuse map (12,318 KB) + a 2048 normal map (12,318 KB) + a 1024 Specular Map (4,104 KB) = 28740 KB. That's big. For real. Sure, you can convert them to DDS, but that's still an awful large chunk of RAM.

 

I think you didn't understood the Megatexturing concept, JC made it to combat the RAM problem, it works by streaming a huge texture from the HDD by chunks so a 4086 or even bigger texture would never be loaded entirely on RAM but only 256 or so chunks of it as you walk on the terrain.

 

AluminumHaste i made a terrain to test if i could cut it in chunks without screwing the texturing/uv and i was successful using Modo, if you want i can send it to you for you to test.

Posted
I think you didn't understood the Megatexturing concept, JC made it to combat the RAM problem, it works by streaming a huge texture from the HDD by chunks so a 4086 or even bigger texture would never be loaded entirely on RAM but only 256 or so chunks of it as you walk on the terrain.

 

AluminumHaste i made a terrain to test if i could cut it in chunks without screwing the texturing/uv and i was successful using Modo, if you want i can send it to you for you to test.

 

Please I would love to look at it :)

email it to derick.boe@gmail.com

I always assumed I'd taste like boot leather.

 

Posted (edited)
Please I would love to look at it :)

email it to derick.boe@gmail.com

 

Ok, any format in particular. :)

 

edit: Ok it was send in .lwo format.

Edited by HMart
Posted
Ok, any format in particular. :)

 

edit: Ok it was send in .lwo format.

 

I got the email, but there wasn't any attachment. Can you send it again please?

I always assumed I'd taste like boot leather.

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recent Status Updates

    • JackFarmer

      "The Year of the Rat." 
      😄

      Al Stewart must be proud of you!
      Happy testing!
      @MirceaKitsune
      · 1 reply
    • datiswous

      I posted about it before, but I think the default tdm logo video looks outdated. For a (i.m.o.) better looking version, you can download the pk4 attached to this post and plonk it in your tdm root folder. Every mission that starts with the tdm logo then starts with the better looking one. Try for example mission COS1 Pearls and Swine.
      tdm_logo_video.pk4
      · 2 replies
    • JackFarmer

      Kill the bots! (see the "Who is online" bar)
      · 3 replies
    • STiFU

      I finished DOOM - The Dark Ages the other day. It is a decent shooter, but not as great as its predecessors, especially because of the soundtrack.
      · 5 replies
    • JackFarmer

      What do you know about a 40 degree day?
      @demagogue
      · 4 replies
×
×
  • Create New...