Jump to content
The Dark Mod Forums

Search the Community

Searched results for '/tags/forums/folder paths/' or tags 'forums/folder paths/q=/tags/forums/folder paths/&'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Discussion
    • News & Announcements
    • The Dark Mod
    • Fan Missions
    • Off-Topic
  • Feedback and Support
    • TDM Tech Support
    • DarkRadiant Feedback and Development
    • I want to Help
  • Editing and Design
    • TDM Editors Guild
    • Art Assets
    • Music & SFX

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

  1. Nice to see that you're happy with that... Did you know you could save screenshots inside TDM? Press (default) F12 key. Screenshots can be found in the screenshots folder in the root directory of TDM.
  2. yeah, you're not the only one that has experienced this issue. It's a strange problem, because most of our beta testers didn't have this issue, but a few did. We quadruple-checked the file paths and everything. Something funky is definitely going on, sorry about this. Lucky the issue only seems to be present to very few players and only in this particular area (he says, hoping not to jinx it) EDIT: Fixed now, uploading the version 1.0001 hotfix :D
  3. Another utility program, "findToolLongSubtitles", is now available, which scans a directory for .subs and .srt files, and checks the length in characters of each subtitle line against a maximum fieldwidth expressed in characters: Win executable C++ source code file It is more fully described in the latter as: findTooLongSubtitles.cpp By Geep, March, 2023, for The Dark Mod, under the terms of its open-source license. Purpose: Given a particular subtitle maximum fieldwidth, evaluates TDM subtitles - contained in .subs and .srt files - and reports those that don't fit. Assumes a maximum 2-line subtitle field. If a subtitle doesn't currently fit (or suboptimally relies on auto-word-wrap to fit), but could be made good by inserting or adjusting a linebreak, locations where that break could be positioned are shown. This program only examines a single folder at a time for contained .subs and .srt files. If your FM has these files in multiple places, run this program more than once. For an "inline" subtitle, a string-embedded "\n" causes a manual linebreak. When shown in this program's output, that subtitle has 2 lines, as in the game. This allows use of a common output routine for inline & srt subtitles. Console program invocation: findTooLongSubtitles -m maxSubtitleCharsPerLine [default is 42] -d dirWithSoundFiles [default is current dir] -o output file [default is stdout] Build: Requires C++ 17 or later For example outputs, evaluating subtitles found in the 2.11 releases of FMs New Job and St. Lucia against a proposed 42-character fieldwidth, see here.
  4. @Goldwell This missing material I found in TDM 2.03: This does have vertex program code (arb?) still in it, not sure if really needed. This is how it looks ingame (when I add the material to the fms material folder): Not sure if this is how it's supposed to look, but better than nothing. This texture now shows up fine (previously I reported there was a black square on it). Maybe Dragofer fixed it for 2.11:
  5. I hadn't tested the importer yet but looking at it now, it indeed looks to just be the FBX converter that Greebo integrated. @greeboCorrect me if I'm wrong but I don't think the Dark Radiant model converter supports OBJ yet? Because yeah, datiswous brings up a pretty good point as I don't think DR can handle OBJ files directly right now. @datiswous In this case I'd recommend the FBX to LWO batch converter for heavy use. I wouldn't expect anyone to really know about it, as I don't think we've really talked about this anywhere yet. I'd intended to write an article on the wiki to document how to set it up, but that kinda fell by the wayside since Greebo directly incorporated it into DR. In the FBX to LWO batch method, you just export your models to a mirrored folder structure. It's hierarchy is identical to the folder paths that your final models are contained in, within the target FM's model directory. So all you have to do is export to your FBX folder, run the batch file and it automatically replaces the meshes in the output directory. Big thanks to Greebo on the converter system! I originally had reached out to him over the idea a while ago and he made it into a full fledged feature. I can't tell you how much time this saves when working almost entirely with models in a level. If anyone would like to see the setup on that, lemme know and I'll try to get a wiki page made to document the process.
  6. Automatic subtitles generation with Whisper I found a far better alternative to auto generate almost perfect srt files: Whisper. https://openai.com/research/whisper https://github.com/openai/whisper For example I did a test with file Simeon3.ogg, a 44 seconds voice file from fm A house of locked secrets. By using command in terminal: whisper Simeon3.ogg --model small.en After a very short time (could be due to it using nvidia cuda, not sure) it creates a bunch of export files, including an srt file with contents: (be warned that you will read the contents of an audio file of a mission, potentially spoiling something) This is almost exactly how it is supposed to be. Not only does it pick up the language all perfect, it also creates full sentences with punctuation. This is far better than the VOSK method in Kdenlive, which I had to edit afterwards. After that I load it in Kdenlive together with the sound file and make a couple of easy corrections to the flow. Basically you have to make sure that in the gaps in the audio file the subtitle sentences also stop. See example below: This is probably a 10x faster workflow. Edit: You can also list all the files in the command. For example (from dir with voice files): whisper Carlotta1.ogg Carlotta2.ogg Carlotta3.ogg -o ./../../subtitles --model medium.en -f srt This command generates the subtitles from these 3 files and saves them in the subtitles folder in (only) srt format. If you want inline, you copy them over from the srt files. Instead you can just use srt for all voice files. Edit 2 Currently I use this workflow: In the folder with voice audio files I make a folder subtitles. Then I open a terminal window in the voice folder. Then I do the following command in the terminal: whisper Carlotta1.ogg Carlotta2.ogg Carlotta3.ogg -o ./subtitles --model medium.en -f srt Afterwards I move the subtitle folder to another folder with voice files and repeat steps 2 and 3 or if I'm done I move the folder to the root folder of the mission.
  7. Here I release the subtitles I made for this mission. The subtitles are only for the opening conversation which starts in the first 3 second of loading the mission. Therefore it's quite easy to test if it is done correctly. Unzip the 7zip file into the root of the fm. It adds the subtitles folder. It would be nice if people can test it. subtitles_BC.7z
  8. Above 3 items are released now, on the "Barks" thread: https://forums.thedarkmod.com/index.php?/topic/21740-english-subtitles-for-ai-barks/&do=findComment&comment=483331
  9. Instead of that, you could, in that time period, start learning your own missions and in doing so become more active on the forums, learning from others. It's also great to understand how things work in the engine, when you play. It might spoil some immersion though.. Or learn to build games with other engines, like Godot for example.
  10. It is a nice start. dont forget to cleanup your binary folder. === For the ones who want to try this launcher: download the 7zip package open the 7zip file with 7zip extract only file "TDMLaunch.exe" from folderlocation "TDMLaunch.7z\TDMLaunch\bin\Debug\" to your tdm folder. Run a mission: When you start this launcher, click on tab "settings", select the needed folders and hit button "scan fm". This will fill-up the missions table, in the launch tab. double click on a mission to select it and click on the "Run mission" button.
  11. Keep in mind also that mission size, and complexity have increased dramatically since the beginning. For a lot of veteran mappers, it can take over a year to get a map made and released. The last dozen missions have for the most part been pretty massive, with new textures, sounds, scripts, models etc. We seem to be long past the point of people loading up the tools, and banging out a mission in a few weeks that's very barebones. We still do see some of those, but I noticed in the beta mapper forums and on Discord, that mappers seem to make these maps, but don't release them, and instead use the knowledge gained to make something even better. Could just be bias on my part scrolling through the forums and discord server though.
  12. There is no SS3, how can they do a remake? And thank god they got rid of unity, that engine is total trash garbage on anything over 60 fps. Just spend 5 minutes on steam forums for Unity project games, and there's just thousands of people complaining about poor performance, stuttering etc.
  13. Probably the .script file that's needed, but unfortunately can't be included with a prefab. Maybe there's a comment somewhere in the prefab (or in the wiki or forums) that says what script it needs and where to find it. (The similar combination setup I used earlier doesn't involve "slot", so clearly uses a different script that I what I have.)
  14. Yeah I think that the /script folder is the way to go here. Create my_campaign.script in the /script folder and add it to tdm_custom_scripts.script (i.e., #include "script/my_campaign.script"). And if your script needs to know which campaign mission is being played, don't forgot https://wiki.thedarkmod.com/index.php?title=Setting_up_Campaigns#Scripting.
  15. Thank you for a great puzzle fm! I'm having real trouble with the TDM v 2.10-64bit on Linux Mint 21.1 Link to the guide supplied by V-Man339 https://forums.thedarkmod.com/index.php?/topic/15844-fan-mission-the-gatehouse-by-bikerdude-goldchocobo-updated-02112014/page/7/#comment-429405
  16. I agree. I'm copying this idea over to the https://forums.thedarkmod.com/index.php?/topic/21741-subtitles-possibilities-beyond-211/ thread. Related: I'll probably do some more experiments with the current TDM font & size, to understand max char count versus field width.
  17. hello freyk Big Thanks and I just gave you a special LIKE For now it seems everything worked fine offcause i first had a Problem to start (unzipping the file , created a Folder and I had to remember how to get the command prompt to go there )( cd wget ) then it took all night long (about 7hr.) with a space usage of 1,95GiBĀ“s powershell had a problem with the Parameter -p (maybe just because i hadend been in the folder !?) copy/paste works fine and you can use the folder by any "index.php@title=" 1.Question : in future ? can there be done a quick-refresh aslong as the downloaded folder is in the wget-Folder ? 2. : is it possible to only download the Darkradiant part of the wiki ? thanks again !
  18. Some years ago i succesfully downloaded the wiki with wget, for TDM dvd. I dont know if this method wikl work now. https://forums.thedarkmod.com/index.php?/topic/19998-tdm-collection-dvd/#comment-437887
  19. @datiswous, made that correction fm_test.subs --> fm_conversations.subs @stgatilov, about srt naming and file location, would you be OK with the following edit? New/changed stuff in italics: srt command is followed by paths to a sound sample and its .srt file, typically with matching filenames. An .srt file is usually placed either with its sound file or in a "subtitles" folder. The .srt file format is described e.g. [1]. The file must be in engine-native encoding (internationalization is not supported yet anyway) and have no BOM mark. It contains a sequence of text messages to show during the sound sample, each with start and end timestamps within the sample's timeline. It is recommended to use common software to create .srt files for sound samples, instead of writing them manually. This way is more flexible but more complicated, and it is only necessary for long sounds, for instance sound sample of a briefing video. It's a simple enough standard that it can be shown as an short example, demonstrating that subtitle segments can have time gaps between them. And the example can show correct TDM usage, without requiring a trip off-site and picking through features that TDM doesn't support. Specifically, the example shows how to define two lines by direct entry, rather than using unsupported message location tags (X1, Y1, etc.). And skips other unavailable SRT font markups like italics, mentioned in the wikipedia description. The example would also show the TDM-specific path treatment. The example could be inserted before the sentence "It is recommended to use common software...."
  20. I guess the best image-to-normal conversions I've seen here in the forums are via njob. I am curious about this AI thing though: https://github.com/HugoTini/DeepBump has to be installed into Blender as a plugin?
  21. Yeah, I thought the same and this is what I effectively do (putting srt files in folder subtitles).
  22. We are proud to announce the release of: The Dark Mod 2.11 ! The Dark Mod 2.11 is primarily a bug-fix release. The majority of development time was dedicated to fixing or improving long-standing bugs or problem areas with the project rather than focusing on new features. That said, some of the improvements that were introduced to address these issues could very well be classified as new features in terms of the amount of changes required to bring them to life. A full changelog can be viewed here, but some highlights include: Major gameplay improvements! For players, Stealth Score and AI alert behavior has been improved to better detect tactile contact with AI and proximity. An older TDM release introduced a grace period feature that was overly broad and made some AI ignore players that were right in front of them. This has been substantially improved so stealth scoring and AI reactions should be a lot more consistent and logical. Players will also have a new Blackjack experience with better cues about whether a blackjack attack will succeed and improvements to the way that the blackjack attack is executed. Players can more smoothly transition from climbing as the player is now permitted to be crouched during the climb. There is a new multi-loot feature which allows you to pickup multiple loot pieces by holding down the frob button! Performance Improvements! The new volumetric light feature has been improved via a new blur phase. This means that you no longer need to increase the samples to reduce or remove banding and performance should be substantially improved. Before 2.10 ( dithering and low sample count): After 2.11 ( blurred and higher default sample count ) : Soft Shadows now utilize scissors and tile-based evaluation in stencil mode so that Anti-Aliasing no longer need be applied to the entire shadow buffer. Shadow Maps have improved mipmap, LOD and texel utilization. There should be fewer artifacts and better performance. Large models are now evaluated via a BVH structure so that they can be split for lighting and culling optimizations. AI think cycles have been optimized and perform less work per-frame. GLSL programs have been rewritten to have better performance on AMD graphic cards. Included mission improvements! Mission 1: A New Job now features subtitles! Mission 2: Tears of Saint Lucia has been improved with EFX reverb and a few bug fixes! Asset fixes and additions! Dragofer has fixed hundreds of assets that were missing setup definitions or other components that would cause the console to flood with errors on TDM launch or on the launch of missions. In addition, he has added hundreds of new and old assets from both TDM team members and members of the TDM community. Improvements for Mappers! The Engine now supports Obj model format Material Shaders no longer require you to add frob stages. Frob is now auto-generated. You can still add custom frob effects to materials if preferred Missions can now include decls that override those in the core TDM without using an override file to replace the entire core file. GUI scripting has been overhauled with better syntax and error reporting Dmap precision has been increased and Dmap T-junction performance has been optimized Please see our Moddb article for the full developer blog entry: https://www.moddb.com/mods/the-dark-mod/news/the-dark-mod-211-is-here To update, simply run the tdm_installer.exe file in your darkmod folder. Note that tdm_update.exe is no longer supported, but you can download the new installer from the Downloads page if you don't have it yet. Please be aware that old saved games will not be compatible with 2.11, so finish any missions you might be in the middle of first!
  23. DarkRadiant 3.8.0 is ready for download. What's new: Feature: Support new frob-related material keywords Improvement: Mission selection list in Game setup is not alphabetically sorted Improvement: Better distinction between inherited and regular spawnargs Improvement: Silence sound shader button Improvement: Add Reload Definitions button to Model Chooser Fixed: Model Selector widgets are cut off and flicker constantly on Linux Fixed: DarkRadiant will not start without Dark Mod plugins Fixed: GenericEntityNode not calculating the direction correctly with "editor_rotatable" Fixed: RenderableArrow not drawing the tip correctly for arbitrary rotations Fixed: Light Inspector crashes on Linux Fixed: Models glitch out when filtering then showing them Fixed: Skin Editor: models not centered well in preview Fixed: "Copy Resource Path" includes top level folders Fixed: Skin Editor: internal test skins are shown if Material Editor was open previously Fixed: Changing Game/Project doesn't update loaded assets correctly Fixed: Model Chooser: initially hidden materials aren't revealed when enabling them Fixed: Choosing AI entity class 'atdm:townsfolk_commoner_update' causes crash Fixed: Sporadic assertion failure on shutdown due to LocalBitmapArtProvider destruction Fixed: Prefab Selector spams infinite error dialogs on Linux Windows and Mac Downloads are available on Github: https://github.com/codereader/DarkRadiant/releases/tag/3.8.0 and of course linked from the website https://www.darkradiant.net Thanks to all the awesome people who keep using DarkRadiant to create Fan Missions - they are the main reason for me to keep going. Please report any bugs or feature requests here in these forums, following these guidelines: Bugs (including steps for reproduction) can go directly on the tracker. When unsure about a bug/issue, feel free to ask. If you run into a crash, please record a crashdump: Crashdump Instructions Feature requests should be suggested (and possibly discussed) here in these forums before they may be added to the tracker. The list of changes can be found on the our bugtracker changelog. Keep on mapping!
  24. TTLG? That's Through the Looking Glass Forums. A looking glass fan community. Has been around for a long, long time. https://www.ttlg.com/forums/
  25. No, not really, have only seen him on the forums many years ago. He deserves a lot of credit for providing the SVN infrastructure in the beginnings of the project, it's been only later when we transferred this to a hosted server. Memory is blurry, but I think my time working on TDM and his don't overlap that much - I had been getting more active, and he pulled back a bit. He bootstrapped quite a few important systems, IIRC he's been working on light gem and the first Stim/Response and Inventory implementations. From what I recall, he gave the project an organisational backbone in the technical department which is crucial to keep things together. Folks like Spring and NH who have joined long before me could give more insights, I guess. (Looking at my join date makes me feel old either way. From TDM's current view point, the year 2006 seems like right at the beginning, but actually the mod had already been existing for two years by that time I joined. With the first release in 2009, 2006 is rather in the middle. Heck, I haven't touched the mod code for at least 10 years - and I can still remember a few things, which is a testament of how much it occupied my thoughts back then).
×
×
  • Create New...