Jump to content
The Dark Mod Forums

VanishedOne

Member
  • Posts

    1235
  • Joined

  • Days Won

    24

Everything posted by VanishedOne

  1. From what's left, I speculate it's about TheUnbeholden, who has the forum tag 'Campaign Dev'. It probably isn't common knowledge there hasn't been an official campaign in the works for a long time.
  2. Ah, I see: I was looking at http://forums.thedarkmod.com/topic/17258-breakable-glass/page-3?do=findComment&comment=374528 and of course it talks about marker entities in the context of func_fractures, where the glass may end up just gone. But yes, if you have a broken model then it can carry the visual stim. I was wondering about what happens if you 'kill' a func_securitycamera since I remembered it was apparently supposed to become a physics object on breakage, but from a comparison of https://github.com/TTimo/doom3.gpl/blob/master/neo/game/SecurityCamera.cpp#L516 with TDM's source code it looks as though that behaviour has been removed.
  3. In this case, I think it should be possible to make a file /materials/your-custom-name.mtr, and put your modified def in it, then it'll override the same-named material in the .pk4s. (Better than overriding an entire core file, which would require copying all the contents over.)
  4. You'd use it in a material that's using a TGA as its diffusemap, and see whether you get a green tinge. I tried it at some point and the green was pretty obvious. I don't seem to have a record of which TGA texture I tried though.
  5. Would that be a port of frob.vfp? The reason it's unused is this bug: http://forums.thedarkmod.com/topic/10129-tdm-commands-and-variables/?do=findComment&comment=199639
  6. According to my notes on shaderparms, there should be support for recognising a 'broken' state within light shaders as well (via a parm7 condition), though I haven't tested it. So instead of making breakage equivalent to switching off you could make the light flicker or dim or something. Trouble is, for anyone not planning a comprehensive overhaul of the light entities, I'm not sure how breakable lights would be identifiable to players. Also, if you want shattering glass (other than by trying a particle effect), that's a more complex set-up involving a separate func_fracture entity. Existing models aren't set up for that. Edit: speaking of func_fractures reminds me, do AI visually notice broken items yet? Mentioned in http://forums.thedarkmod.com/topic/17258-breakable-glass/page-3?do=findComment&comment=375028 but not explicit in http://bugs.thedarkmod.com/view.php?id=4177 -- and that's just regarding fractures, not other kinds of breakable entity. Edit2: according to http://forums.thedarkmod.com/topic/17258-breakable-glass/page-3?do=findComment&comment=374528 support for AI reactions exists, but I'm not sure what classes, if any yet, create the marker. Probably none, since the only markers I can find defined are for missing items and blood stains.
  7. Was textures/buildercompound/tiling/wood01 a deliberate removal? I was using that.
  8. My two pennyworth: - The lightning bolt may get interpreted as a purely gometrical zigzag, some kind of bend variant. That may be why the bolts in these images tend to have at least one visible end: https://www.heraldry-wiki.com/heraldrywiki/index.php/Category:Lightning_bolts https://commons.wikimedia.org/wiki/Category:Lightning_in_heraldry - Since the blueprint isn't clearly of anything, it might be taken for, say, an architectural blueprint. After all, the tools aren't part of the escutcheon so they only appear when the full achievement is displayed, and hammers and protractors are plausibly architectural anyway... Or go with a clock blueprint and it might seem a 'mere' clockmakers' guild rather than a club for scientists inventing marvels...
  9. I'm not sure whether it completely works as advertised (even a simple set-up seems frustrating to work out), but it's there; the problem is that for light-interactive materials all you can use is an alpha ramp, because of the engine limitation on partial transparency for light-interactive surfaces. Here's a test map (set Object Details to Normal or the distances may be scaled badly for the map):
  10. I'm pretty sure func_fractures trigger their targets when broken: I used that before to change the light image breakable windows were casting onto a floor. So I think you could have the func_fracture target an entity with a trigger Response that sets the chest contents frobable and then removes the atdm:target_set_frobable.
  11. See recent comments under http://bugs.thedarkmod.com/view.php?id=4993
  12. According to http://wiki.thedarkmod.com/index.php?title=Inventor%27s_Guild#Misconceptions there's at least one electrical guild: something to bear in mind when deciding how much prominence to give to electricity.
  13. Bug report: lamp01_blue isn't blue. (I found the intended colour by examining the sample map.)
  14. Reminds me of when I made a banner with a view to a Mechanist-like-but-secular-futurist-techno-utopian theme: http://forums.thedarkmod.com/topic/10003-so-what-are-you-working-on-right-now/page-265?hl=%2Blovecraft+%2Btiles+%2Bbathroom&do=findComment&comment=380117
  15. Besides what the tracker mentions, if I remember rightly it ignores peering of double doors. I also encountered a trigger_on_open or trigger_when_opened failure in one mission that I speculate might have been related to my using door control at the time. But if all that can be checked, it'll be a great feature.
  16. There are at least two materials that don't quite fit the standard pattern (and presumably there are reasons for that; in the case of the dark bottles, apparently it's for visibility), so a search script would hopefully be sophisticated enough to catch such cases. At any rate, so long as the existing method still works, once those unusual materials are identified they can just be left alone.
  17. With e.g. Judith having already raised suggestions about how to revise the look of the frob highlight (and the old frob.vfp having demo'd an alternative), I'm a little concerned about designing a syntax around the current set-up and its assumptions, like the assumption of a blend gl_dst_color, gl_one stage with _white and a blend add stage with the diffusemap. (tdm_pagan_orb_glow uses the standard 0.15 but applies it to _white. wbottle01 uses no multiplier at all in its first frob highlight stage - it just uses parm11 alone - and uses gl_one_minus_dst_color, gl_one with the diffusemap. In its second stage it uses 0.03 but with textures/darkmod/sfx/grey_mid.) The only thing you can really do with a single parameter is change the brightness multiplier, so we'd better be sure that's sufficient.
  18. Recreating Thief's exploding barrels has been on my list of things to try for a while; I just haven't got around to it. I can't remember offhand whether idExplodingBarrel appeared to be doing anything that e.g. a modified mine couldn't. To my mind, since we're dealing with a toolkit for making missions, whether something has been used yet is less of a guide to its potential usefulness than whether there's another straightforward way to accomplish the same thing. id made various spawnclasses like idTarget_LightFadeIn for basic tasks a TDM mapper would probably accomplish with a script or S/R. But they also made interesting stuff that's presently dormant (idTarget_SetInfluence, for example). Looking at how explosives are used in Thief (exiting the cathedral in T1; breaking open a bricked-up doorway in Rowena's Curse; an FM I forget the name of that invites you to blow a metal door open), I think it's interesting but my remarks here are applicable, which is why I haven't yet looked into it closely,
  19. Yes, I was just about to suggest that cvar. If memory serves, though, it has unresolved bugs, so don't be surprised if you encounter any.
  20. If you want a fully opaque material with regions that glow in the dark, just apply those regions in a blend add stage. If you want an alphatested material with glowing bits in the 'holes', I think you can use ignoreAlphaTest in your blend add stage.
  21. My previous comment: http://forums.thedarkmod.com/topic/18990-custom-frob-idea/?do=findComment&comment=412240 Which links to: http://forums.thedarkmod.com/topic/11359-textures-that-need-love/page-2?do=findComment&comment=253435 If a new highlight couldn't be tweaked per material, cases like the dark bottles should be checked for visibility. Can you give an example of how the new syntax would look? A 'top-level material keyword that would apply as frob color' sounds as though it takes a colour as a parameter. On the other hand STiFU wanted a globally player-configurable frob highlight.
  22. A quick test suggests http://wiki.thedarkmod.com/index.php?title=Doors#Slanted_or_Tilted_Doors may be adaptable for func_rotating. I did have a ghost I could walk through and shoot through at one point, and http://forums.thedarkmod.com/topic/9082-newbie-darkradiant-questions/page-314?do=findComment&comment=414284 lists everything I tried. Unfortunately I seem not to have kept a record of the winning formula.
  23. I thought I'd ask about this here before filing a tracker issue in case it's a map bug of some kind. This is the room I'm working on. I'm on a dark balcony, but occasionally, when I move alongside the railings, my lightgem goes bright. I've found that this happens especially if I stand opposite the big bookcase, lean left over the railings and look around with the mouse (as shown). By selectively turning off lights, I've found one that seems to be the cause, or at any rate can be the cause on its own. Oddly, I'm outside the light volume. I'm not even that close to it. I've attached the room in case anyone wants to examine it (you'll see only one light is left on). It requires Judith's Builder compound asset pack. The light volume's unusual rotation doesn't seem to be the cause, and making it shadowcasting didn't help. lightbug2.map.txt
  24. Ladder surfaces don't even have to be static: see the stepladder prefabs. Actually you can make a custom filter that hides textures/common/ladder(.*) -- I just tested and it works. You're right that there's no such built-in filter though.
×
×
  • Create New...