Jump to content
The Dark Mod Forums

Search the Community

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

  • 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. I know, it's just the only easy way I can think of. Fixed script names is what we have now, tdm_custom_scripts.script or tdm_user_addons.script: Every mod will use them up and thus take them away from other mods. We need something that's dynamic and unlimited. A better alternative is a prefix to indicate you want auto-running of that script: Anything called "scripts/include_*.script" would be a good one, just use an unique name and call yours "include_mod_something.script" which will work if no one else names theirs "mod_something". Even better: Have a keyword at the beginning of the script! Like how scripts in Linux start with #!/bin/bash so file managers know how to preview them: Similarly we could add something like #autoexec at the beginning of ours, though this approach requires the engine looping through all script files to detect this keyword. We could imagine making tdm_user_addons.script unique per pk4. But I haven't even mentioned this one as it goes against how the file system works: You can't have multiple files with the same name and different contents, the latest archive in alphabetical order must always override a file loaded by an earlier archive. What gets close to that is a special text file in each pk4 like a package.txt which references the inclusion script as a flag. FM's kind of do that with darkmod.txt: When each pk4 is iterated by the engine at startup, it could read a script name mentioned there and execute the file referenced. But this seems more complicated than necessary unless this configuration is used for more stuff, maybe to list loaded mods in the main menu with their title / description / author / version the same way missions are?
  2. Sorry to resurrect an old thread, but what is the conclusion here? I'm particularly asking about textures.com, because in my latest FM (WIP) I've used tons of textures from there. When I first looked at it, I had concluded that it was OK to use them, but now I'm second guessing that because of this (also mentioned above): Please note that it is not allowed to release our images under Open Source licenses (even when the materials are modified). If you are working on an game that is released under an Open Source license, you need to release content that has been created using our materials under a closed source license. However, this here make me think it might be OK? From https://www.textures.com/support/faq-license#3d-model CAN I USE THE MATERIALS ON A 3D MODEL OR SCENE OR VIDEO GAME LEVEL WHICH I WILL OFFER OR SELL ON A DIGITAL MARKETPLACE? Regular textures may be bundled with 3D models, scenes or video game levels under the following conditions: you have customized the materials for the 3D model, scene or game level, all materials are actually used on the 3D model, in the scene or game level you are selling the model and materials in one package. In other words: do not use bundling as a loophole to sell a texture or material pack. Please add the following text in the documentation accompanying the model: "One or more textures bundled with this project have been created with images from Textures.com. These images may not be redistributed by default. Please visit www.textures.com for more information." IMPORTANT: the exception to this is any content in the Special Content categories: 3D Scans, 3D Scans Atlas, 3D Objects, 3D Foliage, Substance, PBR Materials, Decals, HDR Spheres, HDR Skies, Graphic Designs and 3D Ornaments. The materials in these categories may NOT be bundled with 3D models or scenes. This even applies when you modify the materials: modification does not mean you are allowed to bundle these types of materials. Again I'm specifically talking about using these are part of a fan mission, not the core game. To satisfy the conditions above, I will: customisation: all textures have been converted to different formats (.dds and .tga) or resized I won't include any textures in the .pk4 that aren't included in the mission the FM will be bundled into a single .pk4 package (and I'm obviously not selling it). I'm only using the 'regular textures', not PBR or 3D materials. I will include the text 'One ore more textures...' in the FM readme.
  3. I'm afraid it is not a proper fix: it will only help for "default" messages. There are ton of missions which use "atdm:gui_message" with custom "gui" set, you fix will do nothing for them. For instance: // entity 1769 { "classname" "atdm:gui_message" "name" "message_citywatch_gate1" "angle" "-90.000000" "delay" "0" "force" "1" "gui" "guis/volta_sign_small.gui" "lines" "2" "origin" "345.751 1089.88 213" "show" "1" "text" "Finnley Murray" } Just ask almost any mapper around. Here is e.g. a list of missions which all probably suffer from the problem: "gui" "guis/tdm_message_no_art.gui" hazard/hazard.pk4 -> maps/hazard_night.map northdale2/northdale2.pk4 -> maps/m2.map sirt/sirt.pk4 -> maps/sirt.map ac1/ac1.pk4 -> maps/ac1.map painterswife/painterswife.pk4 -> maps/city.map ac2/ac2.pk4 -> maps/ac2_autosave.map itb/itb.pk4 -> maps/itb.map nobleaffairs/nobleaffairs.pk4 -> maps/noble_affairs.map northdale1/northdale1.pk4 -> maps/m1.map ws1_north/ws1_north.pk4 -> maps/ws1_north.map away0/away0.pk4 -> maps/away0.map ac2/ac2.pk4 -> maps/ac2.map ws5_commerce/ws5_commerce.pk4 -> maps/ws5_commerce.map snowed_inn/snowed_inn.pk4 -> maps/snowed_inn.map airpocket/airpocket.pk4 -> maps/airpocket.map And that is just one particular value of "gui" spawnarg on messages, there are many others.
  4. New script for mappers: my flavour of a fog density fading script. To add this to your FM, add the line "thread FogIntensityLoop();" to your map's void main() function (see the example in fogfade.script) and set "fog_fade" "1" on each foglight to enable script control of it. Set "fog_intensity_multiplier" on each info_location entity to change how thick the fog is in that location (practically speaking it's a multiplier for visibility distance). Lastly, "fog_fade_speed" on each foglight determines how quickly it will change its density. The speed scales with the current value of shaderParm3, using shaderParm3 = 1000 as a baseline. So i.e. if shaderParm is currently at 1/10th of 1000, then fade speed will be 1/10th as fast. Differences to Obsttorte's script: https://forums.thedarkmod.com/index.php?/topic/14394-apples-and-peaches-obsttortes-mapping-and-scripting-thread/&do=findComment&comment=310436 my script uses fog lights you created, rather than creating one for you. Obsttorte's script will delete the foglight if entering a fogfree zone and recreate it later more than one fog light can be controlled (however, no per-fog-light level of control) adding this to the map requires adding a line to your void main() script, rather than adding an info_locations_settings entity with a custom scriptobject spawnarg in my script, mappers set a multiplier of fog visibility distance (shaderParm3), while in Obsttorte's script a "fog_density" spawnarg is used as an alternative to shaderParm3 smaller and less compactly written script fogfade.scriptfogfade.map
  5. The Builder's Blocks The time has come for my unusual gameplay fm to be released! Important! Please read this before you play the map. You will be playing a mini-game in this map. This mini-game alters the mouse sensitivity setting when you start it, so be sure to click on the 'leave' button in-map before exiting the game. Failure to do so means that you must reset the mouse setting manually and then restart the map. Since this is a map for the unusual gameplay contest the gameplay is unusual (not surprisingly). Do not expect a normal Dark Mod mission. Link(s) (post mirrors, and I will add them here): https://www.dropbox....ders_blocks.pk4 Screenshot of someone playing with a prototype of the game: A big thanks to my beta testers (in alphabetical order): jaxa nborh1more Obsttorte PPoe without whom many features would never have seen the light of day.
  6. Since Aluminum directed me here ( https://forums.thedarkmod.com/index.php?/topic/9082-newbie-darkradiant-questions/page/437/#comment-475263 ) can we have unlimited renderer effects? Well, maybe not unlimited, by maybe 3-5? Thanks.

     

    1. Show previous comments  1 more
    2. Nort

      Nort

      Since I wasn't the one mainly asking, I'll just cite you in the original thread instead.

    3. AluminumHaste

      AluminumHaste

      There already is a kind of sorting, sort nearest, sort decal, sort <n>. For things like windows and such, sort nearest should probably have the desirable affect, though looking through multiple translucent shaders might kill performance.

    4. Nort

      Nort

      Is having multiple render effects really killing performance that badly? I don't understand. You're saying that if I have two transparent objects side-by-side, then they'll just count as two render effects, but when combined, they somehow become something much more difficult to render?

      Never-the-less, unless we're talking some kind of infinite portal problem, why not let the mapper choose how much he wants to kill performance? Just warn him against putting too many effects close together.

  7. In the current user addons system, only one addon could ever be installed at a time. This was because every addon would try to overwrite tdm_user_addons.script, and only the one in the alphabetically latest .pk4 would win. Merging addons was not a practical solution for most since this required a similar level of proficiency as actually creating the addons. Coming to the next dev build for 2.12, this limitation has been lifted by automatically including or calling all script files or functions that start with a specific prefix. Addon creators will need to choose unique names, however, which could for example include one's username. For now, backwards compatibility with the old style of addons will be maintained so they will still work, but they will need to be updated before several can be installed at once. Note to creators: as this may result in a surge of popularity of user addons to "mod the mod", it feels like some remarks are necessary: it's important to communicate to players downloading the addons that these are to be used at one's own risk and there's no certain way to ensure that no mission will break. releasing a stable mission with the default TDM package is hard enough. Addons create another layer of complexity that is out of the authors' hands. So while it's okay to ask, please respect the authors' decision not to support addons. savegames will only work with the exact combination and version of addons that they were created with. Updated instructions for creating addons can be found here: https://wiki.thedarkmod.com/index.php?title=A_to_Z_Scripting:_Script_addons_for_players
  8. I'm pleased to announce my first ever mission, The Factory Heist. If you're in the mood for a short but challenging and intricate mission I'm confident you'll have some fun with this. Title: The Factory Heist Short description: Workers at a factory have unearthed a buried building beneath. Sneak in, find a way down there, and loot it for antique treasure! Filename: factoryheist.pk4, now also available on the in-game downloader Author: thebigh Date of Release: 12 September 2020 Version: 1.0 EAX: No Dark Mod Version: 2.08 Content warning: No spiders, no undead, no rats, just one skeleton hand Many thanks to my beta testers: Cambridge Spy, Vanished One, Wesp5, PranQster. Be sure to read the little book in Lukas Dunbar's office Screenshot: Help, I can't reach the loot goal:
  9. The output from terminal is in my first post, here is the log, I didn't know it was in ~/.cache/darkradiant (140556312476288) Started logging to /home/bitflow/.cache/darkradiant/darkradiant.log (140556312476288) This is DarkRadiant 3.2.0 amd64 (140556312476288) Today is 2022-09-24 16:37:50 (140556312476288) ModuleRegistry instantiated. (140556312476288) Module registered: RadiantCore (140556312476288) Current language setting: en (140556312476288) Found 1 language folders. (140556312476288) Module registered: CameraWndManager (140556312476288) Module registered: Clipboard (140556312476288) Module registered: EventManager (140556312476288) Module registered: MouseToolManager (140556312476288) Module registered: StartupMapLoader (140556312476288) Module registered: LocalisationModule (140556312476288) Module registered: EntityInspector (140556312476288) Module registered: FavouritesUserInterface (140556312476288) Module registered: FilterUserInterface (140556312476288) Module registered: wxGLWidgetManager (140556312476288) Module registered: GridUserInterface (140556312476288) Module registered: MainFrame (140556312476288) Module registered: MainFrameLayoutManager (140556312476288) Module registered: MaterialEditor (140556312476288) Module registered: DialogManager (140556312476288) Module registered: GroupDialogModule (140556312476288) Module registered: MenuManager (140556312476288) Module registered: ToolBarManager (140556312476288) Module registered: MediaBrowser (140556312476288) Module registered: OrthoContextMenu (140556312476288) Module registered: ScriptUserInterface (140556312476288) Module registered: StatusBarManager (140556312476288) Module registered: TextureBrowserManager (140556312476288) Module registered: UserInterfaceModule (140556312476288) Module registered: OrthoviewManager (140556312476288) Module registered: Doom3BrushCreator (140556312476288) Module registered: CameraManager (140556312476288) Module registered: Clipper (140556312476288) Module registered: CommandSystem (140556312476288) Module registered: DeclarationManager (140556312476288) Module registered: FavouritesManager (140556312476288) Module registered: EclassColourManager (140556312476288) Module registered: EntityClassManager (140556312476288) Module registered: EntityModule (140556312476288) Module registered: FileTypes (140556312476288) Module registered: FilterSystem (140556312476288) Module registered: FontManager (140556312476288) Module registered: Grid (140556312476288) Module registered: ImageLoader (140556312476288) Module registered: LayerModule (140556312476288) Module registered: ZAasFileManager (140556312476288) Module registered: Doom3AasFileLoader (140556312476288) Module registered: AutomaticMapSaver (140556312476288) Module registered: Counters (140556312476288) Module registered: EditingStopwatch (140556312476288) Module registered: Doom3MapLoader (140556312476288) Module registered: Doom3PrefabLoader (140556312476288) Module registered: MapFormatManager (140556312476288) Module registered: N3map6format17PortableMapFormatE (140556312476288) Module registered: Quake3MapLoader (140556312476288) Module registered: Quake3AlternateMapLoader (140556312476288) Module registered: Quake4MapLoader (140556312476288) Module registered: MapInfoFileManager (140556312476288) Module registered: Map (140556312476288) Module registered: MapResourceManager (140556312476288) Module registered: MRUManager (140556312476288) Module registered: NamespaceFactory (140556312476288) Module registered: RegionManager (140556312476288) Module registered: MD5Module (140556312476288) Module registered: MD5AnimationCache (140556312476288) Module registered: ModelCache (140556312476288) Module registered: ModelFormatManager (140556312476288) Module registered: PicoModelModule (140556312476288) Module registered: ParticlesManager (140556312476288) Module registered: PatchModule (140556312476288) Module registered: OpenGL (140556312476288) Module registered: ShaderCache (140556312476288) Module registered: RenderSystemFactory (140556312476288) Module registered: SharedGLContextHolder (140556312476288) Module registered: SceneGraph (140556312476288) Module registered: SceneGraphFactory (140556312476288) Module registered: SelectionGroupModule (140556312476288) Module registered: SelectionSystem (140556312476288) Module registered: SelectionSetModule (140556312476288) Module registered: ShaderClipboard (140556312476288) Module registered: TextureToolColourSchemeManager (140556312476288) Module registered: TextureToolSceneGraph (140556312476288) Module registered: TextureToolSelectionSystem (140556312476288) Module registered: ColourSchemeManager (140556312476288) Module registered: GameManager (140556312476288) Module registered: PreferenceSystem (140556312476288) Module registered: MaterialManager (140556312476288) Module registered: ModelSkinCache (140556312476288) Module registered: UndoSystemFactory (140556312476288) Module registered: VersionControlManager (140556312476288) Module registered: VirtualFileSystem (140556312476288) Module registered: XMLRegistry (140556312476288) ModuleRegistry Compatibility Level is 20211014 (140556312476288) ModuleLoader: loading modules from /usr/lib/x86_64-linux-gnu/darkradiant/modules/ (140556312476288) ModuleLoader: Loading module '/usr/lib/x86_64-linux-gnu/darkradiant/modules/libsound.so' (140556312476288) Module registered: SoundManager (140556312476288) ModuleLoader: Loading module '/usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so' (140556312476288) ModuleLoader: Loading module '/usr/lib/x86_64-linux-gnu/darkradiant/modules/libscript.so' (140556312476288) Module registered: ScriptingSystem (140556312476288) ModuleLoader: loading modules from /usr/lib/x86_64-linux-gnu/darkradiant/plugins/ (140556312476288) ModuleLoader::loadModules(): modules directory '/usr/lib/x86_64-linux-gnu/darkradiant/plugins/' not found. (140556312476288) XMLRegistry: looking for XML files in /usr/share/darkradiant/ (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/user.xml (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/colours.xml (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/input.xml (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/menu.xml (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/commandsystem.xml (140556312476288) XMLRegistry: Importing XML file: /home/bitflow/.config/darkradiant/3.2/user.xml (140556312476288) XMLRegistry: Importing XML file: /home/bitflow/.config/darkradiant/3.2/colours.xml (140556312476288) XMLRegistry: Importing XML file: /home/bitflow/.config/darkradiant/3.2/input.xml (140556312476288) XMLRegistry: Importing XML file: /home/bitflow/.config/darkradiant/3.2/filters.xml (140556312476288) GameManager: Scanning for game description files: /usr/share/darkradiant/games/ (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/dhewm3.game (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/quake4.game (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/quake3.game (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/xreal.game (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/doom3-demo.game (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/doom3.game (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/prey.game (140556312476288) XMLRegistry: Importing XML file: /usr/share/darkradiant/games/darkmod.game (140556312476288) GameManager: Found game definitions: (140556312476288) Dhewm3 (140556312476288) Doom 3 (140556312476288) Doom 3 Demo (140556312476288) Prey (140556312476288) Quake 3 (140556312476288) Quake 4 (140556312476288) The Dark Mod 2.0 (Standalone) (140556312476288) XreaL (140556312476288) (140556312476288) GameManager: Selected game type: Dhewm3 (140556312476288) GameManager: Map path set to /home/bitflow/.doom3/base/maps/ (140556312476288) GameManager: Prefab path set to /home/bitflow/.doom3/base/prefabs/ (140556312476288) Initialising filesystem using 1 paths (140556312476288) VFS Search Path priority is: (140556312476288) - /home/bitflow/.doom3/base/ (140556312476288) Allowed PK4 Archive File Extensions: pk4 (140556312476288) [vfs] Searched directory: /home/bitflow/.doom3/base/ (140556312476288) EventManager successfully initialised. (140556312476288) ColourSchemeManager: Loading colour schemes... (140556178122496) [DeclParser] Parsed EntityDef declarations in 0.043288 seconds (140556169729792) [DeclParser] Parsed Material declarations in 0.00113893 seconds (140556312476288) [filters] Loaded 16 filters from registry. (140555824658176) 0 fonts registered. (140556312476288) wxWidgets Version: 3.0.4 (140556312476288) Default screen has 1 monitors. (140556312476288) Monitor 0 geometry: 1366x768 at 0, 0 (140555598468864) [DeclParser] Parsed Skin declarations in 3.69549e-05 seconds (140555590076160) [DeclParser] Parsed Particle declarations in 3.40939e-05 seconds (140556312476288) Registering darkradiant module to Python using pybind11 version 2.9.2 (140556312476288) SoundManager: initialising sound playback (140555573290752) [DeclParser] Parsed SoundShader declarations in 3.91006e-05 seconds (140556312476288) Found toolbar: view (140556312476288) Found toolbar: edit (140556312476288) Found toolbar: texture (140556312476288) Found toolbar: textool (140556312476288) ToolbarManager: Instantiating toolbar: view (140556312476288) ToolbarManager: Instantiating toolbar: edit (140556312476288) MainFrame: Activating layout Embedded (140556312476288) ToolbarManager: Instantiating toolbar: texture (140556312476288) ToolbarManager: Instantiating toolbar: textool (140556312476288) EventManager: Shortcuts found in Registry: 152 (140556312476288) Loading map from unnamed.map (140556312476288) map load timer: 0.00 second(s) elapsed (140556312476288) GL_VENDOR: Intel (140556312476288) GL_RENDERER: Mesa Intel(R) HD Graphics 5500 (BDW GT2) (140556312476288) GL_VERSION: 4.6 (Compatibility Profile) Mesa 21.2.6 (140556312476288) [OpenGLRenderSystem] GLSL shading IS available. (140556312476288) --- LoadMapFile --- (140556312476288) unnamed.map (140556312476288) 0 brushes (140556312476288) 0 patches (140556312476288) 0 entities (140556312476288) [OpenGLRenderSystem] GLSL shading IS available. (140556312476288) DarkRadiant init.py called, this is Python 3.8.10 (default, Jun 22 2022, 20:18:18) (140556312476288) [GCC 9.4.0] (140556312476288) Registered script file commands/example.py as Example (140556312476288) Registered script file commands/select_all_models_of_type.py as SelectAllModelsOfType (140556312476288) Registered script file commands/ase_export_blend.py as aseExportBlend (140556312476288) Registered script file commands/test_targets.py as test_targets (140556312476288) Registered script file commands/count_loot.py as CountLoot (140556312476288) Registered script file commands/check_for_invalid_visportals.py as check_invalid_visportals (140556312476288) Registered script file commands/find_duplicate_entities.py as findDuplicateEntities (140556312476288) Registered script file commands/shift_textures_upwards_randomly.py as ShiftTexturesUpwardsRandomly (140556312476288) Registered script file commands/export_obj.py as objExport (140556312476288) Registered script file commands/patchsplitter.py as SplitPatch (140556312476288) Registered script file commands/shift_textures_randomly.py as ShiftTexturesRandomly (140556312476288) Registered script file commands/ase_export.py as aseExport (140556312476288) ScriptModule: Found 12 commands. (140555598468864) Auto-saving registry to user settings path. (140556312476288) GameManager: Map path set to /home/bitflow/.doom3/base/maps/ (140556312476288) GameManager: Prefab path set to /home/bitflow/.doom3/base/prefabs/ (140556312476288) Filesystem shut down (140556312476288) Initialising filesystem using 2 paths (140556312476288) VFS Search Path priority is: (140556312476288) - /home/bitflow/.doom3/base/ (140556312476288) - /usr/local/share/dhewm3/base/ (140556312476288) Allowed PK4 Archive File Extensions: pk4 (140556312476288) [vfs] Searched directory: /home/bitflow/.doom3/base/ (140556312476288) [vfs] Searched directory: /usr/local/share/dhewm3/base/ (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak008.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak007.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak006.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak005.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak004.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak003.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak002.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak001.pk4 (140556312476288) [vfs] pak file: /usr/local/share/dhewm3/base/pak000.pk4 (140555346503424) [DeclParser] Parsed Skin declarations in 0.036665 seconds (140555338110720) [DeclParser] Parsed Particle declarations in 0.0492978 seconds (140555329718016) [DeclParser] Parsed SoundShader declarations in 0.059556 seconds (140555354896128) SIGSEGV signal caught: 11 (140555354896128) 0: /usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so(_ZN6applog15SegFaultHandler14_handleSigSegvEi+0x474) [0x7fd5c9ae6ef4] (140555354896128) 1: /lib/x86_64-linux-gnu/libc.so.6(+0x43090) [0x7fd5d517d090] (140555354896128) 2: /usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so(_ZN4decl23DeclarationFolderParser5parseERSiRKN3vfs8FileInfoERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE+0x202) [0x7fd5c99a6f32] (140555354896128) 3: /usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so(_ZN6parser18ThreadedDeclParserIvE12processFilesEv+0x87b) [0x7fd5c99b4f8b] (140555354896128) 4: /usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so(_ZN6parser18ThreadedDeclParserIvE7doParseEv+0x20) [0x7fd5c99b6140] (140555354896128) 5: /usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so(_ZNSt17_Function_handlerIFSt10unique_ptrINSt13__future_base12_Result_baseENS2_8_DeleterEEvENS1_12_Task_setterIS0_INS1_7_ResultIvEES3_ENSt6thread8_InvokerISt5tupleIJZN6parser17ThreadedDefLoaderIvE19ensureLoaderStartedEvEUlvE_EEEEvEEE9_M_invokeERKSt9_Any_data+0x50) [0x7fd5c99cce20] (140555354896128) 6: /usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so(_ZNSt13__future_base13_State_baseV29_M_do_setEPSt8functionIFSt10unique_ptrINS_12_Result_baseENS3_8_DeleterEEvEEPb+0x2d) [0x7fd5c99c1f2d] (140555354896128) 7: /lib/x86_64-linux-gnu/libpthread.so.0(+0x114df) [0x7fd5d533d4df] (140555354896128) 8: /usr/lib/x86_64-linux-gnu/darkradiant/modules/libradiantcore.so(_ZNSt6thread11_State_implINS_8_InvokerISt5tupleIJZNSt13__future_base17_Async_state_implINS1_IS2_IJZN6parser17ThreadedDefLoaderIvE19ensureLoaderStartedEvEUlvE_EEEEvEC4EOSA_EUlvE_EEEEE6_M_runEv+0xfd) [0x7fd5c99c513d] (140555354896128) 9: /usr/lib/x86_64-linux-gnu/libstdc++.so.6(+0xd6de4) [0x7fd5d5591de4] (140555354896128) 10: /lib/x86_64-linux-gnu/libpthread.so.0(+0x8609) [0x7fd5d5334609] (140555354896128) 11: /lib/x86_64-linux-gnu/libc.so.6(clone+0x43) [0x7fd5d5259133] (140555437008640) [DeclParser] Parsed EntityDef declarations in 0.0871708 seconds I also give you the last part of the strace output becouse it was too big for posting here, maybe is helpfull.. ... recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 484) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="A\0nBq\f\300\3\3\0\202\0\n\0\300\3\0p\6\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 483) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="#\203yB\30\0\0\0\6\0\2\0\341\371;\4\0\0\0\0}\1\0\0Q\10\300\3\0\0\0\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 128 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="\203(\3\0Q\10\300\3\2\0\300\3", iov_len=12}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 12 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1(zB\7\0\0\0}\1\0\0\0\0\0\0\0\0\10\3\0\0\357\1\0\0P\1\0\0\354\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 60 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="((\4\0Q\10\300\3}\1\0\0\0\0\0\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\1{B\0\0\0\0q\27\216\2\270\1\3\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="((\4\0Q\10\300\3}\1\0\0\0\0\0\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\1|B\0\0\0\0q\27\216\2\270\1\3\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="((\4\0$\0\300\3}\1\0\0\0\0\33\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\1}B\0\0\0\0\345\16\205\2\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 495) = 1 ([{fd=4, revents=POLLIN}]) read(4, "\1\0\0\0\0\0\0\0", 16) = 8 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="5\30\4\0s\f\300\3$\0\300\3J\5\23\0\213\4\6\0t\f\300\3s\f\300\3*\0\0\0"..., iov_len=584}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 584 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 15) = 0 (Timeout) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="5\30\4\0u\f\300\3$\0\300\3\341\4\23\0\213\4\6\0v\f\300\3u\f\300\3*\0\0\0"..., iov_len=368}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 368 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 381) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="#\203\232B\v\0\0\0\10\0\2\0\320\372;\4\2\0\1\0}\1\0\0Q\10\300\3\0\0\0\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 76 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="#\203\232B\v\0\0\0\n\0\3\0\321\372;\4\3\0\0\0}\1\0\0R\10\300\3\0\0\0\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 380 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="*\2\3\0R\10\300\3\0\0\0\0\203*\4\0Q\10\300\3\0\0\0\0\2\0\300\3(\0\4\0"..., iov_len=44}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 44 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="#\203\233B\v\0\0\0\n\0\3\0\322\372;\4\3\0\0\2}\1\0\0Q\10\300\3\0\0\0\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 184 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="(\2\4\0$\0\300\3}\1\0\0\0\0\33\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\1\236B\0\0\0\0\345\16\205\2\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="(\2\4\0Q\10\300\3}\1\0\0\0\0\0\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\1\237B\0\0\0\0q\27\216\2\270\1\3\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="(\2\4\0Q\10\300\3}\1\0\0\0\0\0\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\1\240B\0\0\0\0q\27\216\2\270\1\3\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="(\2\4\0$\0\300\3}\1\0\0\0\0\33\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\1\241B\0\0\0\0\345\16\205\2\0\08\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="\22\0\7\0Q\10\300\3\203\1\0\0\6\0\0\0 \10\300\3\1\0\0\0\320\372;\4", iov_len=28}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 28 recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\34\0\242BQ\10\300\3\203\1\0\0\323\372;\4\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="5\30\4\0w\f\300\3Q\10\300\3\360\0\245\0\213\4\6\0x\f\300\3w\f\300\3*\0\0\0"..., iov_len=4008}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 4008 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="A\0\262B{\f\300\3\3\0\202\0\n\0\300\3\0p\6\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 0) = 0 (Timeout) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN}, {fd=4, events=POLLIN}, {fd=9, events=POLLIN}], 3, 16) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="#\203\301B\26\0\0\0\5\0\2\0\345\372;\4\1\0\0\0}\1\0\0Q\10\300\3\0\0\0\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 120 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="$\30\1\0\203(\3\0}\1\0\0\2\0\245\0", iov_len=16}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 16 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1(\303B\7\0\0\0}\1\0\0q\27\216\2\0\0\10\3\0\0\357\1\0\0\10\3\0\0\357\1"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 60 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="\203(\3\0q\27\216\2\2\0\0\0", iov_len=12}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 12 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1(\304B\7\0\0\0}\1\0\0r\27\216\2\0\0\10\3\0\0\357\1\0\0P\1\0\0\t\1"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 60 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="\203(\3\0r\27\216\2\2\0\0\0", iov_len=12}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 12 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1(\305B\7\0\0\0}\1\0\0Q\10\300\3\0\0\10\3\0\0\357\1\0\0P\1\0\0\354\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 60 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="\203(\3\0Q\10\300\3\2\0\0\0", iov_len=12}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 12 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1(\306B\7\0\0\0}\1\0\0\0\0\0\0\0\0\10\3\0\0\357\1\0\0P\1\0\0\354\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 60 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="%(\1\0", iov_len=4}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 4 recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) recvmsg(3, {msg_namelen=0}, 0) = -1 EAGAIN (Resource temporarily unavailable) poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="+(\1\0", iov_len=4}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 4 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\1\2\310B\0\0\0\0R\10\300\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 32 stat("/usr/local/share/dhewm3/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 write(4, "\1\0\0\0\0\0\0\0", 8) = 8 futex(0x564ecf781db0, FUTEX_WAKE_PRIVATE, 2147483647) = 0 write(4, "\1\0\0\0\0\0\0\0", 8) = 8 poll([{fd=3, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=3, revents=POLLOUT}]) writev(3, [{iov_base="\203*\4\0Q\10\300\3\0\0\0\0\2\0\245\0\n\4\2\0Q\10\300\3\31\0\v\0}\1\0\0"..., iov_len=72}, {iov_base=NULL, iov_len=0}, {iov_base="", iov_len=0}], 3) = 72 poll([{fd=3, events=POLLIN}], 1, -1) = 1 ([{fd=3, revents=POLLIN}]) recvmsg(3, {msg_name=NULL, msg_namelen=0, msg_iov=[{iov_base="\22\0\312BQ\10\300\3Q\10\300\3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., iov_len=4096}], msg_iovlen=1, msg_controllen=0, msg_flags=0}, 0) = 292 write(4, "\1\0\0\0\0\0\0\0", 8) = 8 futex(0x564ecf781db0, FUTEX_WAKE_PRIVATE, 2147483647) = 0 stat("/usr/local/share/dhewm3/", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 stat("/home/bitflow/.doom3", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 write(11, " (139855732226688) GameManager: "..., 80) = 80 lstat("/home/bitflow/.doom3/base/maps/", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0 write(11, " (139855732226688) GameManager: "..., 86) = 86 write(11, " (139855732226688) Filesystem sh"..., 40) = 40 write(11, " (139855732226688) Initialising "..., 58) = 58 write(11, " (139855732226688) VFS Search Pa"..., 49) = 49 write(11, " (139855732226688) - /home/bitfl"..., 48) = 48 write(11, " (139855732226688) - /usr/local/"..., 51) = 51 write(11, " (139855732226688) Allowed PK4 A"..., 60) = 60 stat("/home/bitflow/.doom3/base/", {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0 openat(AT_FDCWD, "/home/bitflow/.doom3/base/", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 17 fstat(17, {st_mode=S_IFDIR|0777, st_size=4096, ...}) = 0 getdents64(17, /* 15 entries */, 32768) = 464 getdents64(17, /* 0 entries */, 32768) = 0 close(17) = 0 write(11, " (139855732226688) [vfs] Searche"..., 72) = 72 stat("/usr/local/share/dhewm3/base/", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 openat(AT_FDCWD, "/usr/local/share/dhewm3/base/", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 17 fstat(17, {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0 getdents64(17, /* 13 entries */, 32768) = 400 getdents64(17, /* 0 entries */, 32768) = 0 close(17) = 0 write(11, " (139855732226688) [vfs] Searche"..., 75) = 75 openat(AT_FDCWD, "/usr/local/share/dhewm3/base/pak008.pk4", O_RDONLY) = 17 fstat(17, {st_mode=S_IFREG|0644, st_size=12243, ...}) = 0 fstat(17, {st_mode=S_IFREG|0644, st_size=12243, ...}) = 0 lseek(17, 8192, SEEK_SET) = 8192 read(17, "\340\351H\4\212\1\4\322J\225w\36T\347\242\2157\3307\25\277/{\242\256tbn,\213\0030"..., 4051) = 4051 lseek(17, 12243, SEEK_SET) = 12243 lseek(17, 12243, SEEK_SET) = 12243 lseek(17, 8192, SEEK_SET) = 8192 read(17, "\340\351H\4\212\1\4\322J\225w\36T\347\242\2157\3307\25\277/{\242\256tbn,\213\0030"..., 4096) = 4051 lseek(17, 12243, SEEK_SET) = 12243 lseek(17, 12243, SEEK_SET) = 12243 lseek(17, 12243, SEEK_SET) = 12243 lseek(17, 12243, SEEK_SET) = 12243 write(11, " (139855732226688) [vfs] pak fil"..., 75) = 75 openat(AT_FDCWD, "/usr/local/share/dhewm3/base/pak007.pk4", O_RDONLY) = 18 fstat(18, {st_mode=S_IFREG|0644, st_size=192031, ...}) = 0 fstat(18, {st_mode=S_IFREG|0644, st_size=192031, ...}) = 0 lseek(18, 188416, SEEK_SET) = 188416 read(18, "P\2611\v\353\357\236i\356\315\274\307dW4\341\f3\357\335s?\357\235\271o\2\1#\300\277N"..., 3615) = 3615 lseek(18, 192031, SEEK_SET) = 192031 lseek(18, 192031, SEEK_SET) = 192031 lseek(18, 188416, SEEK_SET) = 188416 read(18, "P\2611\v\353\357\236i\356\315\274\307dW4\341\f3\357\335s?\357\235\271o\2\1#\300\277N"..., 4096) = 3615 ... lseek(25, 353159257, SEEK_SET) = 353159257 write(11, " (139855732226688) [vfs] pak fil"..., 75) = 75 clone(child_stack=0x7f32b0b91c70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[60738], tls=0x7f32b0b92700, child_tidptr=0x7f32b0b929d0) = 60738 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f327e0fc000 mprotect(0x7f327e0fd000, 8388608, PROT_READ|PROT_WRITE) = 0 clone(child_stack=0x7f327e8fbc70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[60739], tls=0x7f327e8fc700, child_tidptr=0x7f327e8fc9d0) = 60739 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f327d8fb000 mprotect(0x7f327d8fc000, 8388608, PROT_READ|PROT_WRITE) = 0 clone(child_stack=0x7f327e0fac70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[60740], tls=0x7f327e0fb700, child_tidptr=0x7f327e0fb9d0) = 60740 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f327d0fa000 mprotect(0x7f327d0fb000, 8388608, PROT_READ|PROT_WRITE) = 0 clone(child_stack=0x7f327d8f9c70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[60741], tls=0x7f327d8fa700, child_tidptr=0x7f327d8fa9d0) = 60741 mmap(NULL, 8392704, PROT_NONE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = 0x7f327c8f9000 mprotect(0x7f327c8fa000, 8388608, PROT_READ|PROT_WRITE) = 0 clone(child_stack=0x7f327d0f8c70, flags=CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND|CLONE_THREAD|CLONE_SYSVSEM|CLONE_SETTLS|CLONE_PARENT_SETTID|CLONE_CHILD_CLEARTID, parent_tid=[60742], tls=0x7f327d0f9700, child_tidptr=0x7f327d0f99d0) = 60742 futex(0x7f327d0f99d0, FUTEX_WAIT, 60742, NULL) = 0 futex(0x564ed0908308, FUTEX_WAKE_PRIVATE, 2147483647) = 0 futex(0x7f3274031718, FUTEX_WAKE_PRIVATE, 2147483647) = 0 futex(0x564ed0907da8, FUTEX_WAKE_PRIVATE, 2147483647) = 0 futex(0x7f326800ba78, FUTEX_WAKE_PRIVATE, 2147483647) = 0 munmap(0x7f327c8f9000, 8392704) = 0 futex(0x564ed11723d8, FUTEX_WAKE_PRIVATE, 2147483647) = 0 munmap(0x7f326effe000, 8392704) = 0 futex(0x7f3270074e78, FUTEX_WAKE_PRIVATE, 2147483647) = 0 futex(0x7f327e8fc9d0, FUTEX_WAIT, 60739, NULL) = ? +++ exited with 1 +++
  10. The devs didn't title this thread, and @datiswous said they're attempting to mislead people by using Russell's name and a retro style to make it resemble Thief, which is cynical. I grew up on forums like I'm sure anyone who likes a game from '98 did. I actually left the Discord immediately after joining it because it was more off-topic doom-posting than anything relevant to the mod. I thought the forums might be better, but it's mostly just grown men yelling at clouds and telling strangers how mature they are, and a few brave souls actually developing anything. Depressing place, I'll just stick to enjoying new missions every 6 months without an account.
  11. True, but, 1. this thread is called "Western stealth FPS with Stephen Russell", and, 2. nothing you said changes anything for me. The gameplay still doesn't look like something I'd enjoy. And, if you really think this forum is cynical, then you don't visit forums much. Actually, the majority of the users are are pretty mature, unlike in other forums.
  12. The King of Diamonds Info Summary: Your accomplice is in over their heads and needs your help. It's the end of winter and the streets are quiet. Taverns, city watch, graveyards and pipes... you might even encounter a diamond! Build time: about 6 months Type: City FM/Exploration Size: Medium Completion time: 30 mins - 3 hrs, depending on how much you're willing to explore! Download http://www77.zippyshare.com/v/Z1fZy41Q/file.html - Zippyshare https://www.dropbox.com/s/428jkpoi14544pd/kingofdiamonds.pk4?dl=1 - Dropbox Available via the In-Game Mission Downloader! Screenshots Notes This is my first TDM FM, it came about from me learning how to use the editor and all of its different features. No doubt, you may see the variance in quality between the FM's different sections. Have fun figuring out what I built first and last, hah. For the most part, I focused on exploration and interesting readables. You'll find that you can complete the main objective in about half an hour, if you know what you're doing and that's perfectly fine, but if you're not getting lost and exploring, you're missing out! Big thanks to Bikerdude for his help throughout the beta-testing phase of this FM - fixing a lot of performance hitches, putting some bells and whistles and introducing new spaces that allowed me to expand greatly on the FM's readables and objectives. Without those, and my beta testers' further suggestions, this FM would be decidedly more boring! Acknowledgements Mapping credits: Bikerdude - Re-visportalling half the map, SE Maketplace, Graveyard, Bell Tower, SW street, misc. Spooks - the rest. Readables: Spooks Voice work: Goldwell, Bikerdude, Spooks. Beta testing: Aosys, AluminumHaste, Goldwell, Oldjim, nbohr1more Lute songs from No Honor Among Thieves. Breath script from Business as Usual. Technical Info Version 1 Last Updated: 13/05/2016 This mission has a very open layout. Even though a lot of care was taken to ensure performance would be good, it's bound to fluctuate at long view-distances. If you have an average computer expect some dips to the 30s. You have my apologies for that.If you're having FPS troubles, try setting your LOD Detail menu setting to Low. Numerous objects will have their shadows disabled, which may improve performance somewhat. I also recommend typing tdm_lod_bias_changed in the console when you're in-game, just to make sure all LOD entities have been activated.This mission does not support localization out of the gate.This mission requires TDM version 2.0.3.FAQ Stuck somewhere? I've some hints for you in the FAQ section. Enjoy playing and remember to be kind to Birdie!
  13. im running Arch Linux, i installed this game from the AUR. i added my user in games user group as suggested in during the installation of the game, when i try to launch the game nothing happens, so i tried running is through the terminal to get some output, i got this TDM 2.07/64 #8079 (8079) linux-x86_64 Apr 12 2019 18:24:35 found interface lo - loopback found interface wlp13s0 - ( i removed the ip ) found interface wlp13s0 - ( i removed the ip ) Found Generic CPU, features: MMX SSE SSE2 SSE3 tdm using MMX & SSE & SSE2 & SSE3 for SIMD processing. no 'darkmod' directory in exe path /opt/thedarkmod, skipping WARNING: using hardcoded default base path ------ Initializing File System ------ Current search path: /opt/thedarkmod/ /opt/thedarkmod/tdm_textures_wood01.pk4 (376 files) /opt/thedarkmod/tdm_textures_window01.pk4 (389 files) /opt/thedarkmod/tdm_textures_stone_sculpted01.pk4 (463 files) /opt/thedarkmod/tdm_textures_stone_natural01.pk4 (130 files) /opt/thedarkmod/tdm_textures_stone_flat01.pk4 (295 files) /opt/thedarkmod/tdm_textures_stone_cobblestones01.pk4 (224 files) /opt/thedarkmod/tdm_textures_stone_brick01.pk4 (520 files) /opt/thedarkmod/tdm_textures_sfx01.pk4 (69 files) /opt/thedarkmod/tdm_textures_roof01.pk4 (72 files) /opt/thedarkmod/tdm_textures_plaster01.pk4 (142 files) /opt/thedarkmod/tdm_textures_paint_paper01.pk4 (63 files) /opt/thedarkmod/tdm_textures_other01.pk4 (127 files) /opt/thedarkmod/tdm_textures_nature01.pk4 (281 files) /opt/thedarkmod/tdm_textures_metal01.pk4 (496 files) /opt/thedarkmod/tdm_textures_glass01.pk4 (51 files) /opt/thedarkmod/tdm_textures_fabric01.pk4 (43 files) /opt/thedarkmod/tdm_textures_door01.pk4 (177 files) /opt/thedarkmod/tdm_textures_decals01.pk4 (461 files) /opt/thedarkmod/tdm_textures_carpet01.pk4 (92 files) /opt/thedarkmod/tdm_textures_base01.pk4 (395 files) /opt/thedarkmod/tdm_standalone.pk4 (4 files) /opt/thedarkmod/tdm_sound_vocals_decls01.pk4 (28 files) /opt/thedarkmod/tdm_sound_vocals07.pk4 (1111 files) /opt/thedarkmod/tdm_sound_vocals06.pk4 (696 files) /opt/thedarkmod/tdm_sound_vocals05.pk4 (128 files) /opt/thedarkmod/tdm_sound_vocals04.pk4 (2870 files) /opt/thedarkmod/tdm_sound_vocals03.pk4 (743 files) /opt/thedarkmod/tdm_sound_vocals02.pk4 (1299 files) /opt/thedarkmod/tdm_sound_vocals01.pk4 (82 files) /opt/thedarkmod/tdm_sound_sfx02.pk4 (605 files) /opt/thedarkmod/tdm_sound_sfx01.pk4 (948 files) /opt/thedarkmod/tdm_sound_ambient_decls01.pk4 (8 files) /opt/thedarkmod/tdm_sound_ambient03.pk4 (24 files) /opt/thedarkmod/tdm_sound_ambient02.pk4 (163 files) /opt/thedarkmod/tdm_sound_ambient01.pk4 (220 files) /opt/thedarkmod/tdm_prefabs01.pk4 (960 files) /opt/thedarkmod/tdm_player01.pk4 (125 files) /opt/thedarkmod/tdm_models_decls01.pk4 (103 files) /opt/thedarkmod/tdm_models02.pk4 (2020 files) /opt/thedarkmod/tdm_models01.pk4 (3043 files) /opt/thedarkmod/tdm_gui_credits01.pk4 (49 files) /opt/thedarkmod/tdm_gui01.pk4 (715 files) /opt/thedarkmod/tdm_fonts01.pk4 (696 files) /opt/thedarkmod/tdm_env01.pk4 (152 files) /opt/thedarkmod/tdm_defs01.pk4 (179 files) /opt/thedarkmod/tdm_base01.pk4 (197 files) /opt/thedarkmod/tdm_ai_steambots01.pk4 (24 files) /opt/thedarkmod/tdm_ai_monsters_spiders01.pk4 (82 files) /opt/thedarkmod/tdm_ai_humanoid_undead01.pk4 (50 files) /opt/thedarkmod/tdm_ai_humanoid_townsfolk01.pk4 (95 files) /opt/thedarkmod/tdm_ai_humanoid_pagans01.pk4 (10 files) /opt/thedarkmod/tdm_ai_humanoid_nobles01.pk4 (48 files) /opt/thedarkmod/tdm_ai_humanoid_mages01.pk4 (8 files) /opt/thedarkmod/tdm_ai_humanoid_heads01.pk4 (100 files) /opt/thedarkmod/tdm_ai_humanoid_guards01.pk4 (379 files) /opt/thedarkmod/tdm_ai_humanoid_females01.pk4 (172 files) /opt/thedarkmod/tdm_ai_humanoid_builders01.pk4 (91 files) /opt/thedarkmod/tdm_ai_base01.pk4 (8 files) /opt/thedarkmod/tdm_ai_animals01.pk4 (82 files) File System Initialized. -------------------------------------- Couldn't open journal files ----- Initializing Decls ----- WARNING:file materials/tdm_epi_shader_2.mtr, line 462: material 'wizard_cloth_001' previously defined at materials/tdm_epi_shader_2.mtr:366 WARNING:file materials/tdm_water.mtr, line 1189: material 'textures/particles/ripple_1' previously defined at materials/tdm_particles_ripple.mtr:1 WARNING:file skins/tdm_epi_skins.skin, line 86: skin 'steam_engine_003_off' previously defined at skins/steam_engine_003.skin:1 WARNING:file skins/tdm_epi_skins.skin, line 97: skin 'steam_engine_003_on' previously defined at skins/steam_engine_003.skin:18 ------------------------------ /proc/cpuinfo CPU frequency: 1895.94 MHz signal caught: Segmentation fault si_code 1 Trying to exit gracefully.. --------- Game Map Shutdown ---------- --------- Game Map Shutdown done ----- idRenderSystem::Shutdown() I18NLocal: Shutdown. ------------ Game Shutdown ----------- Shutdown event system ...not started -------------------------------------- About to exit with code 0
  14. i tried this but it says undefined command generate-core-dump    /opt/thedarkmod  gdb ./thedarkmod.x64  ✔  3m 16s   06:41:23 PM  GNU gdb (GDB) 9.1 Copyright (C) 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-pc-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>. Find the GDB manual and other documentation resources online at: <http://www.gnu.org/software/gdb/documentation/>. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from ./thedarkmod.x64... (No debugging symbols found in ./thedarkmod.x64) (gdb) run Starting program: /opt/thedarkmod/thedarkmod.x64 [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". TDM 2.07/64 #8079 (8079) linux-x86_64 Apr 12 2019 18:24:35 found interface lo - loopback found interface wlp13s0 - ( i removed the ip ) found interface wlp13s0 - ( i removed the ip ) Found Generic CPU, features: MMX SSE SSE2 SSE3 tdm using MMX & SSE & SSE2 & SSE3 for SIMD processing. no 'darkmod' directory in exe path /opt/thedarkmod, skipping WARNING: using hardcoded default base path ------ Initializing File System ------ Current search path: /opt/thedarkmod/ /opt/thedarkmod/tdm_textures_wood01.pk4 (376 files) /opt/thedarkmod/tdm_textures_window01.pk4 (389 files) /opt/thedarkmod/tdm_textures_stone_sculpted01.pk4 (463 files) /opt/thedarkmod/tdm_textures_stone_natural01.pk4 (130 files) /opt/thedarkmod/tdm_textures_stone_flat01.pk4 (295 files) /opt/thedarkmod/tdm_textures_stone_cobblestones01.pk4 (224 files) /opt/thedarkmod/tdm_textures_stone_brick01.pk4 (520 files) /opt/thedarkmod/tdm_textures_sfx01.pk4 (69 files) /opt/thedarkmod/tdm_textures_roof01.pk4 (72 files) /opt/thedarkmod/tdm_textures_plaster01.pk4 (142 files) /opt/thedarkmod/tdm_textures_paint_paper01.pk4 (63 files) /opt/thedarkmod/tdm_textures_other01.pk4 (127 files) /opt/thedarkmod/tdm_textures_nature01.pk4 (281 files) /opt/thedarkmod/tdm_textures_metal01.pk4 (496 files) /opt/thedarkmod/tdm_textures_glass01.pk4 (51 files) /opt/thedarkmod/tdm_textures_fabric01.pk4 (43 files) /opt/thedarkmod/tdm_textures_door01.pk4 (177 files) /opt/thedarkmod/tdm_textures_decals01.pk4 (461 files) /opt/thedarkmod/tdm_textures_carpet01.pk4 (92 files) /opt/thedarkmod/tdm_textures_base01.pk4 (395 files) /opt/thedarkmod/tdm_standalone.pk4 (4 files) /opt/thedarkmod/tdm_sound_vocals_decls01.pk4 (28 files) /opt/thedarkmod/tdm_sound_vocals07.pk4 (1111 files) /opt/thedarkmod/tdm_sound_vocals06.pk4 (696 files) /opt/thedarkmod/tdm_sound_vocals05.pk4 (128 files) /opt/thedarkmod/tdm_sound_vocals04.pk4 (2870 files) /opt/thedarkmod/tdm_sound_vocals03.pk4 (743 files) /opt/thedarkmod/tdm_sound_vocals02.pk4 (1299 files) /opt/thedarkmod/tdm_sound_vocals01.pk4 (82 files) /opt/thedarkmod/tdm_sound_sfx02.pk4 (605 files) /opt/thedarkmod/tdm_sound_sfx01.pk4 (948 files) /opt/thedarkmod/tdm_sound_ambient_decls01.pk4 (8 files) /opt/thedarkmod/tdm_sound_ambient03.pk4 (24 files) /opt/thedarkmod/tdm_sound_ambient02.pk4 (163 files) /opt/thedarkmod/tdm_sound_ambient01.pk4 (220 files) /opt/thedarkmod/tdm_prefabs01.pk4 (960 files) /opt/thedarkmod/tdm_player01.pk4 (125 files) /opt/thedarkmod/tdm_models_decls01.pk4 (103 files) /opt/thedarkmod/tdm_models02.pk4 (2020 files) /opt/thedarkmod/tdm_models01.pk4 (3043 files) /opt/thedarkmod/tdm_gui_credits01.pk4 (49 files) /opt/thedarkmod/tdm_gui01.pk4 (715 files) /opt/thedarkmod/tdm_fonts01.pk4 (696 files) /opt/thedarkmod/tdm_env01.pk4 (152 files) /opt/thedarkmod/tdm_defs01.pk4 (179 files) /opt/thedarkmod/tdm_base01.pk4 (197 files) /opt/thedarkmod/tdm_ai_steambots01.pk4 (24 files) /opt/thedarkmod/tdm_ai_monsters_spiders01.pk4 (82 files) /opt/thedarkmod/tdm_ai_humanoid_undead01.pk4 (50 files) /opt/thedarkmod/tdm_ai_humanoid_townsfolk01.pk4 (95 files) /opt/thedarkmod/tdm_ai_humanoid_pagans01.pk4 (10 files) /opt/thedarkmod/tdm_ai_humanoid_nobles01.pk4 (48 files) /opt/thedarkmod/tdm_ai_humanoid_mages01.pk4 (8 files) /opt/thedarkmod/tdm_ai_humanoid_heads01.pk4 (100 files) /opt/thedarkmod/tdm_ai_humanoid_guards01.pk4 (379 files) /opt/thedarkmod/tdm_ai_humanoid_females01.pk4 (172 files) /opt/thedarkmod/tdm_ai_humanoid_builders01.pk4 (91 files) /opt/thedarkmod/tdm_ai_base01.pk4 (8 files) /opt/thedarkmod/tdm_ai_animals01.pk4 (82 files) File System Initialized. -------------------------------------- [New Thread 0x7ffff7759700 (LWP 404303)] Couldn't open journal files ----- Initializing Decls ----- WARNING:file materials/tdm_epi_shader_2.mtr, line 462: material 'wizard_cloth_001' previously defined at materials/tdm_epi_shader_2.mtr:366 WARNING:file materials/tdm_water.mtr, line 1189: material 'textures/particles/ripple_1' previously defined at materials/tdm_particles_ripple.mtr:1 WARNING:file skins/tdm_epi_skins.skin, line 86: skin 'steam_engine_003_off' previously defined at skins/steam_engine_003.skin:1 WARNING:file skins/tdm_epi_skins.skin, line 97: skin 'steam_engine_003_on' previously defined at skins/steam_engine_003.skin:18 ------------------------------ /proc/cpuinfo CPU frequency: 1895.71 MHz Thread 1 "thedarkmod.x64" received signal SIGSEGV, Segmentation fault. 0x00000000005f8c19 in ?? () (gdb) generate-core-dump Undefined command: "generate-core-dump". Try "help". (gdb) help List of classes of commands: aliases -- Aliases of other commands. breakpoints -- Making program stop at certain points. data -- Examining data. files -- Specifying and examining files. internals -- Maintenance commands. obscure -- Obscure features. running -- Running the program. stack -- Examining the stack. status -- Status inquiries. support -- Support facilities. tracepoints -- Tracing of program execution without stopping the program. user-defined -- User-defined commands. Type "help" followed by a class name for a list of commands in that class. Type "help all" for the list of all commands. Type "help" followed by command name for full documentation. Type "apropos word" to search for commands related to "word". Type "apropos -v word" for full documentation of commands related to "word". Command name abbreviations are allowed if unambiguous. (gdb) Quit (gdb)
  15. Here are subtitles. That I did not test for the whole mission, but the first sequence (drunk guy), at start mission, shows fine. subtitles_ostf.pk4
  16. We didn't make the holidays (such a busy time of year) so here's a New Year's gift, an unusual little mission. Window of Opportunity Recover an item for a regretful trader out in a wilderness setting, and discover more! Available within the in-game mission downloader or: Download: http://www.thedarkmo...ndetails/?id=79 Alternative: https://drive.google...WTMzQXZtMVFBSG8 Some unorthodox gameplay on regular/ghost difficulties. (Arachnophobes might prefer short mode...) Please expect to need your lantern in regular and ghost modes! Short ("easy") mode is a smaller map, so if you are looking for areas others reference below, or 100% of the loot, you'll need to play on another mode. I wanted to create my first mission before I became influenced by too many others' ideas, and limited myself to what has been done before. As such, this mission is not set in a city/town, and has some features that are likely to be provocative. There's a section some really like, which others don't, either way I kept it short to not last too long. That being said, I hope you do find it fun! :-) Special thanks to those who provided valuable testing and feedback: Goldwell, Kyyrma, plotzzz, 161803398874989, PPoe & Bikerdude (who also contributed a sound). (Please remember spoiler tags to not expose things meant to be discovered by playing.) Like so: [spoiler]secrets[/spoiler] If you are having trouble finding the main objective, here's what to pay attention to in the mission for hints: There is a spot it's possible to get stuck on the ground in the corner by the cliff/rockfall where there's a rope laying on the ground, please take care if you poke around there!
  17. With TDM 2.12, after the credits finished, the "Mission Complete" screen did not display. I found that the screen was black and I could hear my footsteps when I tried to move around. I think the reason for the mission not completing successfully was that the "Do not kill or harm allies" objective was never marked as "1 = STATE_COMPLETE" instead it was left as "0 = STATE_INCOMPLETE". Note, I didn't use noclip throughout the mission. Same as: https://forums.thedarkmod.com/index.php?/topic/18054-fan-mission-the-accountant-2-new-in-town-by-goldwell-20160509/&do=findComment&comment=458491
  18. How about using TDM automation framework (and maybe pcem/qemu)? More info see: https://forums.thedarkmod.com/index.php?/topic/19828-automation-features-and-discussion/
  19. Announcing the release of “A House of Locked Secrets” for The Dark Mod! Download Download the latest version of the Dark Mod here: http://www.thedarkmod.com/download-the-mod/ Download the mission here: Mediafire: http://www.mediafire.com/download/4awe6e756m12p71/ahouseoflockedsecrets.pk4 Southquarter: http://www.southquarter.com/tdm/fms/ahouseoflockedsecrets.pk4Taaki: http://darkmod.taaaki.za.net/fms/ahouseoflockedsecrets.pk4Fidcal.com: http://www.fidcal.com/darkuser/missions/ahouseoflockedsecrets.pk4 The mission should also shortly be up on the in-game downloader. General Notes -A House of Locked Secrets is a campaign, with two levels. -The mission is also a sequel to the Dark Mod FM “Requiem”. While you don’t need to have played Requiem to enjoy this mission, it is recommended, as it will help you better understand the lore of this corner of the TDM universe. -There is a companion novella to this series, Shadowcursed, available at Amazon.com or Smashwords.com. If you beat this FM, you can get a coupon code for 50% off the price! -The map you get of the manor is an automap which tells you which room you are currently in. Use it, along with the compass to help find your way. -Most inventory items in the game can be dropped, so no need to carry them around after they are no longer of any use. -If you use noclip or other console commands while playing, there is a good chance that you will break the intended flow of gameplay. Credits Mapping and Readables: Gelo R. Fleisher Voice Acting: Amber Collins, Bikerdude, Commander, Goldwell, Mortem Desino Additional scripting: Obsttorte, SteveL Additional textures and assets: Bikerdude, Crowind, Fidcal, Flanders, Goldwell, Grayman, Kyyrma, Melan, Nielsen, Sotha, Springheel Additional map optimization: Bikerdude Custom Soundtrack: Sarah Eide - www.saraheide.com Additional Music: cmusounddesign, Gigagooga, Lee Rosevere, Leonardo Badinella, Marianne Lihannah, NewEonOrchestra, Sarah Eide, Tabias Scot, Zoro. Additional Sounds: club20sound, ERH, geoneo0, Grayman, kevinkace, nothayama, qubodup, SoundsExciting, speedygonzo, swiftoid, viznoman. Testers: Airship Ballet, AluminumHaste, Baal, Bikerdude, Deadlove, demagogue, Diego, Dunedain19, gnartsch, Goldwell, Lowenz, Lux, nbohr1more, Oldjim, PranQster, SteveL, Xarg A note from the author After a lot of work ‘A House of Locked Secrets’ is finally ready for everyone to play. More than anything else, this FM was a team project. If the official TDM campaign never gets released, you might consider this to be the unofficial one, as almost everybody on the core TDM team lent a hand toward its completion. Of the many contributors, I especially want to thank SteveL whose custom code turned what was just an idea in my head into the FM you now get to play. I also want to thank Bikerdude, who performed a lot of optimization work on the map, and Goldwell whose voice brought to life many of the mission’s characters. If you like the music in the FM, check out the work of Sarah Eide (www.saraheide.com) who composed most of the custom soundtrack. Also, Marianne Lihannah makes a return from Requiem with a few songs, so check out her work too (www.funeralsinger.net). They'd both love to hear from you, so if you liked their music, let them know! On a personal note, I hope that this FM will give you a few hours of enjoyment, and if it does, feel free to drop me a line either in this forum thread, my work blog, or via email. In the future, other writing and game projects seem set to take up a lot of my time, so I give permission for anyone (preferably the TDM team) to update both Requiem and A House of Locked Secrets to fix any bugs or compatibility issues. I just ask that fixes be limited to correcting for glitches or for issues that come up due to future TDM releases. I do give permission for people to make visual & gameplay changes too but ask that you release these changes in a separate version than my release, and I ask that you make no changes to the story, readables, and plot. With that all out of the way, I want to thank you again for downloading and playing ‘A House of Locked Secrets’; I hope you enjoy it. God bless, Gelo “Moonbo” Fleisher
  20. Beta 11 Fix finished-on state auto-update was unreliable Slighty improve scanner title/author detect Tags are now named some whatever regular-version-looking thing to force GitHub to put the newest at the top
  21. The subtitles of The Wench vocal set are now available for eventual incorporation into TDM Two versions, created earlier in the year, are released today with just-revised names. The first (created on Apr 21) was fully QA tested under April's 2.12dev: testSubtitlesWenchOriginal.pk4 But it was noticed at the time that some of the voice clips do not correspond well with their TDM event categorizations. So, the second testSubtitlesWench version (created on Apr 24) is designed to be used with corrected voice clip names and categorizations, as detailed in bugtracker 6284. It was hoped that this bug report could be addressed in a timely way, so that this patched version could also be given final testing. But waited long enough; released now without final testing: testSubtitlesWenchPatched.pk4 CAUTION: If you run this version with current 2.12dev and step through the subtitles, at some point it will fail with a console error. It will only fully succeed with a future 2.12dev with bugtracker 6284 changes incorporated. EDIT: Since this was posted, progress has occurred on 6284. The result is reportedly a bit at odds with "Patched". Expect a 3rd, fully-aligned version of testSubtitlesWench to be forthcoming. About The Wench The Wench character is described as "uneducated, saucy and bold. The wench has been around the block; she is confident and flirty." She is further characterized in the wiki as "a low-class woman with something of a foul mouth". This vocal set comes with slightly different versions for soft-spoken women and "barmaids, whores, and female thieves". Statistics Original: In file fm_root.subs there are 535 inlines, including: 50 with an explicit linebreak, intending 2 lines 485 without Patched: In file fm_root.subs there are 533 inlines, including: 48 with an explicit linebreak, intending 2 lines 485 without None of these needed explicit duration extensions. For both original and patched, there are 20 SRTs, including: 19 with 2 messages 1 with 3 messages Of the 41 total SRT messages, there are: 13 with an explicit linebreak, intending 2 lines 28 without In all, in this vocal set, there are: Original: 555 voice clips with subtitles, showing 576 messages. Patched: 553 voice clips with subtitles, showing 574 messages. Corresponding Excel Spreadsheet WenchOriginalSubtitles.xlsx This spreadsheet was organized with an early "v1" barks template.
  22. I have been working on a map for many days now. All of a sudden however, TDM crashes when I compile it via dmap from its console. All I did was to cut a few brushes and add a few new entities. Here is the console log: mircea@linux-qz0r:~/Games/Quake/TheDarkMod/darkmod>./thedarkmod.x86 TDM 2.03 #6455 linux-x86 Jan 28 2015 20:03:48 found interface lo - loopback found interface eth0 - 192.168.134.178/255.255.255.0 Found Intel CPU with Hyper-Threading enabled, features: MMX SSE SSE2 SSE3 CMOV tdm using generic code for SIMD processing. ------ Initializing File System ------ Current search path: /home/mircea/Games/Quake/TheDarkMod/darkmod/fms/map_first.pk4dir /home/mircea/Games/Quake/TheDarkMod/darkmod/ /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_wood01.pk4 (317 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_window01.pk4 (345 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_stone_sculpted01.pk4 (424 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_stone_natural01.pk4 (123 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_stone_flat01.pk4 (281 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_stone_cobblestones01.pk4 (214 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_stone_brick01.pk4 (440 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_sfx01.pk4 (64 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_roof01.pk4 (65 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_plaster01.pk4 (140 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_paint_paper01.pk4 (42 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_other01.pk4 (51 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_nature01.pk4 (256 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_metal01.pk4 (465 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_glass01.pk4 (46 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_fabric01.pk4 (41 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_door01.pk4 (171 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_decals01.pk4 (367 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_carpet01.pk4 (92 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_textures_base01.pk4 (375 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_standalone.pk4 (4 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals_decls01.pk4 (27 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals07.pk4 (1111 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals06.pk4 (688 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals05.pk4 (128 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals04.pk4 (2854 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals03.pk4 (743 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals02.pk4 (1300 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_vocals01.pk4 (82 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_sfx02.pk4 (596 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_sfx01.pk4 (924 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_ambient_decls01.pk4 (8 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_ambient03.pk4 (24 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_ambient02.pk4 (156 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_sound_ambient01.pk4 (209 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_prefabs01.pk4 (556 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_player01.pk4 (125 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_models_decls01.pk4 (93 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_models02.pk4 (1836 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_models01.pk4 (1915 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui_credits01.pk4 (49 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4 (673 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_game02.pk4 (2 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_game01.pk4 (2 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_fonts01.pk4 (696 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_env01.pk4 (98 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_defs01.pk4 (166 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4 (155 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_steambots01.pk4 (24 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_monsters_spiders01.pk4 (82 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_undead01.pk4 (50 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_townsfolk01.pk4 (95 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_pagans01.pk4 (10 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_nobles01.pk4 (48 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_mages01.pk4 (8 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_heads01.pk4 (96 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_guards01.pk4 (373 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_females01.pk4 (169 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_humanoid_builders01.pk4 (91 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_base01.pk4 (8 files) /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_ai_animals01.pk4 (80 files) File System Initialized. -------------------------------------- ----- Initializing Decls ----- ------------------------------ ------- Initializing renderSystem -------- using ARB renderSystem renderSystem initialized. -------------------------------------- I18N: SetLanguage: 'english'. I18N: Found no character remapping for english. I18N: 1228 strings read from strings/english.lang I18N: 'strings/fm/english.lang' not found. WARNING:Couldn't load image: guis/assets/splash/launch Couldn't open journal files Couldn't exec editor.cfg - file does not exist. execing default.cfg Unknown command 'use' Unknown command 'console' Unknown command 'next' Unknown command 'prev' Unknown command 'previous' Unknown command 'next' Unknown command 'crouch' Unknown command 'Lean' Unknown command 'lean' Unknown command 'Readables' Unknown command 'spyglass' Unknown command 'compass' Unknown command 'lantern' Unknown command 'maps' Unknown command 'objectives' Unknown command 'keys' Unknown command 'lockpicks' Unknown command 'lean' Unknown command 'Inventory' Unknown command 'Mantle' Unknown command 'creep' Unknown command 'frob' Unknown command 'inventory' execing Darkmod.cfg Couldn't exec autoexec.cfg - file does not exist. I18N: SetLanguage: 'english'. I18N: Found no character remapping for english. I18N: 1228 strings read from strings/english.lang I18N: 'strings/fm/english.lang' not found. ----- Initializing Sound System ------ sound system initialized. -------------------------------------- ----- R_InitOpenGL ----- Setup X display connection dlopen(libGL.so.1) Initializing OpenGL display Using XFree86-VidModeExtension Version 2.2 Free86-VidModeExtension Activated at 1920x1080 ATTENTION: default value of option allow_glsl_extension_directive_midshader overridden by environment. Using 8/8/8 Color bits, 8 Alpha bits, 24 depth, 8 stencil display. GL_RENDERER: Gallium 0.4 on AMD BARTS GL_EXTENSIONS: GL_ARB_multisample GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_copy_texture GL_EXT_polygon_offset GL_EXT_subtexture GL_EXT_texture_object GL_EXT_vertex_array GL_EXT_compiled_vertex_array GL_EXT_texture GL_EXT_texture3D GL_IBM_rasterpos_clip GL_ARB_point_parameters GL_EXT_draw_range_elements GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_separate_specular_color GL_EXT_texture_edge_clamp GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_ARB_framebuffer_sRGB GL_ARB_multitexture GL_EXT_framebuffer_sRGB GL_IBM_multimode_draw_arrays GL_IBM_texture_mirrored_repeat GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_transpose_matrix GL_EXT_blend_func_separate GL_EXT_fog_coord GL_EXT_multi_draw_arrays GL_EXT_secondary_color GL_EXT_texture_env_add GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_INGR_blend_func_separate GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texgen_reflection GL_NV_texture_env_combine4 GL_S3_s3tc GL_SUN_multi_draw_arrays GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_EXT_framebuffer_object GL_EXT_texture_compression_s3tc GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_MESA_window_pos GL_NV_packed_depth_stencil GL_NV_texture_rectangle GL_ARB_depth_texture GL_ARB_occlusion_query GL_ARB_shadow GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_window_pos GL_EXT_stencil_two_side GL_EXT_texture_cube_map GL_NV_depth_clamp GL_NV_fog_distance GL_APPLE_packed_pixels GL_APPLE_vertex_array_object GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_vertex_program GL_ARB_vertex_shader GL_ATI_draw_buffers GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_MESA_pack_invert GL_NV_primitive_restart GL_ARB_depth_clamp GL_ARB_fragment_program_shadow GL_ARB_half_float_pixel GL_ARB_occlusion_query2 GL_ARB_point_sprite GL_ARB_shading_language_100 GL_ARB_sync GL_ARB_texture_non_power_of_two GL_ARB_vertex_buffer_object GL_ATI_blend_equation_separate GL_EXT_blend_equation_separate GL_OES_read_format GL_ARB_color_buffer_float GL_ARB_pixel_buffer_object GL_ARB_texture_compression_rgtc GL_ARB_texture_float GL_ARB_texture_rectangle GL_ATI_texture_compression_3dc GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_rgtc GL_EXT_texture_mirror_clamp GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_shared_exponent GL_ARB_framebuffer_object GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_packed_depth_stencil GL_ARB_vertex_array_object GL_ATI_separate_stencil GL_ATI_texture_mirror_once GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_gpu_program_parameters GL_EXT_texture_array GL_EXT_texture_compression_latc GL_EXT_texture_integer GL_EXT_texture_sRGB_decode GL_EXT_timer_query GL_OES_EGL_image GL_ARB_copy_buffer GL_ARB_depth_buffer_float GL_ARB_draw_instanced GL_ARB_half_float_vertex GL_ARB_instanced_arrays GL_ARB_map_buffer_range GL_ARB_texture_rg GL_ARB_texture_swizzle GL_ARB_vertex_array_bgra GL_EXT_texture_swizzle GL_EXT_vertex_array_bgra GL_NV_conditional_render GL_AMD_conservative_depth GL_AMD_draw_buffers_blend GL_AMD_seamless_cubemap_per_texture GL_AMD_shader_stencil_export GL_ARB_ES2_compatibility GL_ARB_blend_func_extended GL_ARB_debug_output GL_ARB_draw_buffers_blend GL_ARB_draw_elements_base_vertex GL_ARB_explicit_attrib_location GL_ARB_fragment_coord_conventions GL_ARB_provoking_vertex GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_shader_stencil_export GL_ARB_shader_texture_lod GL_ARB_texture_cube_map_array GL_ARB_texture_gather GL_ARB_texture_multisample GL_ARB_texture_query_lod GL_ARB_texture_rgb10_a2ui GL_ARB_uniform_buffer_object GL_ARB_vertex_type_2_10_10_10_rev GL_EXT_provoking_vertex GL_EXT_texture_snorm GL_MESA_texture_signed_rgba GL_NV_texture_barrier GL_ARB_get_program_binary GL_ARB_robustness GL_ARB_separate_shader_objects GL_ARB_shader_bit_encoding GL_ARB_texture_compression_bptc GL_ARB_timer_query GL_ARB_transform_feedback2 GL_ARB_transform_feedback3 GL_NV_vdpau_interop GL_ANGLE_texture_compression_dxt3 GL_ANGLE_texture_compression_dxt5 GL_ARB_base_instance GL_ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_internalformat_query GL_ARB_map_buffer_alignment GL_ARB_shading_language_420pack GL_ARB_shading_language_packing GL_ARB_texture_storage GL_ARB_transform_feedback_instanced GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_transform_feedback GL_AMD_shader_trinary_minmax GL_ARB_ES3_compatibility GL_ARB_clear_buffer_object GL_ARB_explicit_uniform_location GL_ARB_invalidate_subdata GL_ARB_stencil_texturing GL_ARB_texture_query_levels GL_ARB_texture_storage_multisample GL_ARB_vertex_attrib_binding GL_KHR_debug GL_ARB_buffer_storage GL_ARB_multi_bind GL_ARB_seamless_cubemap_per_texture GL_ARB_texture_mirror_clamp_to_edge GL_ARB_vertex_type_10f_11f_11f_rev GL_EXT_shader_integer_mix GL_ARB_derivative_control GL_ARB_texture_barrier ------- Input Initialization ------- XKB extension: compile time 0x1:0x0, runtime 0x1:0x0: OK XKB extension present on server ( 0x1:0x0 ) ------------------------------------ dlopen(libasound.so.2) asoundlib version: 1.0.28 Alsa is available ------ Alsa Sound Initialization ----- opened Alsa PCM device plughw:2 for playback device buffer size: 5461 frames ( 21844 bytes ) allocated a mix buffer of 16384 bytes -------------------------------------- Checking portable OpenGL extensions... v - using GL_ARB_multitexture v - using GL_ARB_texture_env_combine v - using GL_ARB_texture_cube_map v - using GL_ARB_texture_env_dot3 v - using GL_ARB_texture_env_add v - using GL_ARB_texture_non_power_of_two v - using GL_ARB_texture_compression v - using GL_EXT_texture_compression_s3tc v - using GL_EXT_texture_filter_anisotropic maxTextureAnisotropy: 16.000000 v - using GL_EXT_texture_lod_bias v - using GL_EXT_texture3D v - using GL_EXT_stencil_wrap v - using glStencilOpSeparate X - GL_NV_register_combiners not found X - GL_ATI_fragment_shader not found X - GL_ATI_text_fragment_shader not found v - using GL_ARB_vertex_buffer_object v - using GL_ARB_vertex_program v - using GL_ARB_fragment_program X - EXT_depth_bounds_test not found ---------- R_NV20_Init ---------- Not available. ----------- R200_Init ----------- Not available. ---------- R_ARB2_Init ---------- Available. --------------------------------- ----- R_ReloadARBPrograms ----- glprogs/test.vfp glprogs/test.vfp glprogs/interaction.vfp glprogs/interaction.vfp glprogs/bumpyEnvironment.vfp glprogs/bumpyEnvironment.vfp glprogs/ambientLight.vfp glprogs/ambientLight.vfp glprogs/shadow.vp glprogs/R200_interaction.vp glprogs/nv20_bumpAndLight.vp glprogs/nv20_diffuseColor.vp glprogs/nv20_specularColor.vp glprogs/nv20_diffuseAndSpecularColor.vp glprogs/environment.vfp glprogs/environment.vfp glprogs/test_direct.vfp glprogs/test_direct.vfp glprogs/interaction_direct.vfp glprogs/interaction_direct.vfp glprogs/soft_particle.vfp glprogs/soft_particle.vfp ------------------------------- using ARB_vertex_buffer_object memory using ARB2 renderSystem Font fonts/english/stone in size 12 not found, using size 24 instead. gamex86 - Found SO in EXE path with timestamp of 1422902260 - /home/mircea/Games/Quake/TheDarkMod/darkmod/gamex86.so gamex86 - Found SO in pak file with timestamp of 1422902260 - /home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_game02.pk4/gamex86.so gamex86 - SO in EXE path is newer, ignoring SO in pak file Found Intel CPU with Hyper-Threading enabled, features: MMX SSE SSE2 SSE3 CMOV game using generic code for SIMD processing. --------- Initializing Game ---------- The Dark Mod 2.03, code revision 6470 Build date: Feb 2 2015 WARNING:file def/tdm_ai_heads_springheel.def, line 840: model 'head03_citywatch' previously defined at def/tdm_ai_heads_springheel.def:825 WARNING:file particles/tdm_bikerdude.prt, line 421: particle 'tdm_dry_ice' previously defined at particles/tdm_bikerdude.prt:28 WARNING:file particles/tdm_bikerdude.prt, line 554: particle 'tdm_floating_mood_dust_small' previously defined at particles/tdm_bikerdude.prt:54 WARNING:file particles/tdm_bikerdude.prt, line 581: particle 'tdm_glare_chandelier_02' previously defined at particles/tdm_bikerdude.prt:1 Initializing event system ...830 event definitions Initializing class hierarchy ...169 classes, 810080 bytes for event callbacks Initializing scripts WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script /proc/cpuinfo CPU frequency: 2660 MHz Compiled 'tdm_ai_lanternbot::startAlarmWhistle': 148.5 ms ---------- Compile stats ---------- Memory usage: Strings: 40, 6352 bytes Statements: 19182, 383640 bytes Functions: 1227, 124848 bytes Variables: 88564 bytes Mem used: 1086700 bytes Static data: 2277552 bytes Allocated: 2810692 bytes Thread size: 7068 bytes ...6 aas types game initialized. -------------------------------------- Parsing material files Found 0 new mission packages. Found 79 mods in the FM folder. Parsed 85 mission declarations. No 'tdm_mapsequence.txt' file found for the current mod: map_first.pk4dir -------- Initializing Session -------- WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis Font fonts/english/mason_glow in size 12 not found, using size 48 instead. Font fonts/english/mason_glow in size 24 not found, using size 48 instead. Font fonts/english/mason in size 12 not found, using size 48 instead. Font fonts/english/mason in size 24 not found, using size 48 instead. WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis session initialized -------------------------------------- WARNING:Non-portable: path contains uppercase characters: engine_SVN WARNING:Non-portable: path contains uppercase characters: engine_SVN WARNING:Non-portable: path contains uppercase characters: engine_SVN --- Common Initialization Complete --- ------------- Warnings --------------- during The Dark Mod initialization... WARNING:Couldn't load image: guis/assets/splash/launch WARNING:file def/tdm_ai_heads_springheel.def, line 840: model 'head03_citywatch' previously defined at def/tdm_ai_heads_springheel.def:825 WARNING:file particles/tdm_bikerdude.prt, line 421: particle 'tdm_dry_ice' previously defined at particles/tdm_bikerdude.prt:28 WARNING:file particles/tdm_bikerdude.prt, line 554: particle 'tdm_floating_mood_dust_small' previously defined at particles/tdm_bikerdude.prt:54 WARNING:file particles/tdm_bikerdude.prt, line 581: particle 'tdm_glare_chandelier_02' previously defined at particles/tdm_bikerdude.prt:1 WARNING:Non-portable: path contains uppercase characters: engine_SVN WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_base01.pk4/script/script WARNING:Non-portable: path contains uppercase characters: map_first.pk4dir/home/mircea/Games/Quake/TheDarkMod/darkmod/tdm_gui01.pk4/guis/guis 12 warnings terminal support enabled ( use +set in_tty 0 to disabled ) pid: 14386 9008 MB System Memory 512 MB Video Memory Async thread started Couldn't exec autocommands.cfg - file does not exist. Widescreenmode was set to: 7 (1920x1080) ]dmap first.map.map ---- dmap ---- --- LoadDMapFile --- loading maps/first.map glprogs/ambientEnvironment.vfp glprogs/ambientEnvironment.vfp glprogs/heatHazeWithMaskAndBlur.vfp glprogs/heatHazeWithMaskAndBlur.vfp glprogs/heatHaze.vfp glprogs/heatHaze.vfp 788 total world brushes 163 total world triSurfs 287 patches 1560 entities 2164 planes 52 areaportals size: -12544,-12544,-1168 to 12544,12544, 4352 ############### entity 0 ############### --- FaceBSP --- 4293 faces 10345 leafs 0.1 seconds faceBsp ----- MakeTreePortals ----- ----- FilterBrushesIntoTree ----- 788 total brushes 6880 cluster references --- FloodEntities --- 4435 flooded leafs --- FillOutside --- 3442 solid leafs 2468 leafs filled 4435 inside leafs ----- ClipSidesByTree ----- --- FloodAreas --- WARNING:brush has multiple area portal sides at 956 -1156.8 684 WARNING:brush has multiple area portal sides at -132.8 -68 684 WARNING:brush has multiple area portal sides at 251.2 -444 1004 WARNING:brush has multiple area portal sides at 1668.8 -444 684 WARNING:brush has multiple area portal sides at 580 -772.8 1004 WARNING:brush has multiple area portal sides at 956 644.8 684 WARNING:brush has multiple area portal sides at 956 260.8 1004 WARNING:brush has multiple area portal sides at 1284.8 -444 1004 area 0 has 3481 leafs area 1 has 51 leafs area 2 has 103 leafs area 3 has 169 leafs area 4 has 1 leafs area 5 has 1 leafs area 6 has 46 leafs area 7 has 97 leafs area 8 has 136 leafs area 9 has 5 leafs area 10 has 4 leafs area 11 has 6 leafs area 12 has 4 leafs area 13 has 8 leafs area 14 has 3 leafs area 15 has 4 leafs area 16 has 6 leafs area 17 has 5 leafs area 18 has 8 leafs area 19 has 12 leafs area 20 has 6 leafs area 21 has 10 leafs area 22 has 7 leafs area 23 has 3 leafs area 24 has 5 leafs area 25 has 252 leafs area 26 has 1 leafs area 27 has 1 leafs 28 areas ----- PutPrimitivesInAreas ----- ----- BuildLightShadows ----- ----- CreateLightShadow 0xd2f2e30 ----- ----- CreateLightShadow 0xd3057b8 ----- ----- CreateLightShadow 0xd305d50 ----- ----- CreateLightShadow 0xd306628 ----- ----- CreateLightShadow 0xd319480 ----- ----- CreateLightShadow 0xd319fc0 ----- ----- OptimizeAreaGroups Results ----- 54 tris in 42 tris after edge removal optimization 42 tris after final t junction fixing ----- CreateLightShadow 0xd31a620 ----- ----- OptimizeAreaGroups Results ----- 67 tris in 47 tris after edge removal optimization 49 tris after final t junction fixing ----- CreateLightShadow 0xd31ae58 ----- ----- OptimizeAreaGroups Results ----- 52 tris in 42 tris after edge removal optimization 44 tris after final t junction fixing ----- CreateLightShadow 0xd31b690 ----- ----- OptimizeAreaGroups Results ----- 72 tris in 48 tris after edge removal optimization 50 tris after final t junction fixing 0.4 seconds for BuildLightShadows ----- OptimizeEntity ----- WARNING: backwards triangle in input! WARNING: backwards triangle in input! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! WARNING: backwards triangle generated! ----- OptimizeAreaGroups Results ----- 18163 tris in 10490 tris after edge removal optimization 11035 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 388 tris in 249 tris after edge removal optimization 266 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 5370 tris in 4595 tris after edge removal optimization 4742 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 1668 tris in 1223 tris after edge removal optimization 1335 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 32 tris in 32 tris after edge removal optimization 56 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 10 tris in 10 tris after edge removal optimization 10 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 578 tris in 439 tris after edge removal optimization 674 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 2810 tris in 2194 tris after edge removal optimization 2339 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 6718 tris in 4724 tris after edge removal optimization 4786 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 64 tris in 50 tris after edge removal optimization 58 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 62 tris in 48 tris after edge removal optimization 54 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 76 tris in 48 tris after edge removal optimization 52 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 60 tris in 50 tris after edge removal optimization 58 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 48 tris in 36 tris after edge removal optimization 48 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 26 tris in 20 tris after edge removal optimization 24 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 60 tris in 50 tris after edge removal optimization 58 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 70 tris in 48 tris after edge removal optimization 54 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 36 tris in 44 tris after edge removal optimization 60 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 172 tris in 130 tris after edge removal optimization 130 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 59 tris in 42 tris after edge removal optimization 48 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 40 tris in 44 tris after edge removal optimization 60 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 100 tris in 48 tris after edge removal optimization 54 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 44 tris in 36 tris after edge removal optimization 48 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 26 tris in 20 tris after edge removal optimization 24 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 64 tris in 50 tris after edge removal optimization 58 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 3988 tris in 2804 tris after edge removal optimization 3160 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 10 tris in 10 tris after edge removal optimization 10 tris after final t junction fixing ----- OptimizeAreaGroups Results ----- 10 tris in 10 tris after edge removal optimization 10 tris after final t junction fixing ----- FixGlobalTjunctions ----- WARNING:idFileSystem::OSPathToRelativePath failed on removed 24 degenerate triangles WARNING:idFileSystem::OSPathToRelativePath failed on removed 24 degenerate triangles removed 2 degenerate triangles removed 68 degenerate triangles removed 30 degenerate triangles removed 49 degenerate triangles removed 144 degenerate triangles removed 144 degenerate triangles WARNING:idFileSystem::OSPathToRelativePath failed on WARNING:Couldn't load image: textures/darkmod/window/diamond_pattern_andbars01_local WARNING:Couldn't load image: textures/darkmod/window/diamond_pattern_andbars01_local removed 54 degenerate triangles WARNING:Unknown general material parameter 'tile' in 'tdm_balcony_sp_ceramic01' removed 199 degenerate triangles removed 225 degenerate triangles removed 50 degenerate triangles removed 6 degenerate triangles removed 159 degenerate triangles removed 88 degenerate triangles Regenerated world, staticAllocCount = 0. Shutting down sound hardware ----------- Alsa Shutdown ------------ close pcm dlclose -------------------------------------- idRenderSystem::Shutdown() signal caught: Segmentation fault si_code 1 Was in fatal error shutdown: malloc failure for 65512 Trying to exit gracefully.. shutdown terminal support About to exit with code 0 ModelGenerator memory: No LOD entries. mircea@linux-qz0r:~/Games/Quake/TheDarkMod/darkmod>
  23. Hi all, I bought a new laptop with an Intel HD4000 as graphic card by I'm having problems running TDM. First of all I can run Doom 3 and many other games with this card, so I think the problem is not in the video card performances. When I run the game I get the message on top of the thread. I already check FAQ and put in the configuration the fix for black screen, but nothing. Can I fix this and play the game or Intel drivers aren't able to run this wonderful mod? $ padsp ./tdmlauncher.linux Path to tdmlauncher is /home/rief/.doom3/darkmod/tdmlauncher.linux Darkmod directory is /home/rief/.doom3/darkmod/ Darkmod directory after normalisation is /home/rief/.doom3/darkmod Trying default value for engine executable: /home/rief/.doom3/doom.x86 Trying default Linux location for engine executable /usr/local/games/doom3/doom.x86 Found engine executable in /usr/local/games/doom3/doom.x86 Engine path after normalisation is /usr/local/games/doom3/doom.x86 Could not find 'currentfm.txt' file in /home/rief/.doom3/darkmod/currentfm.txt Current FM is: Searching the /proc/ folder for PID files Using the following argument vector: #0: /usr/local/games/doom3/doom.x86 #1: +set #2: fs_game #3: darkmod #4: +set #5: sys_videoRam #6: 256 Trying to launch /usr/local/games/doom3/doom.x86 /usr/local/games/doom3/doom.x86 +set fs_game darkmod +set sys_videoRam 256 ╭─rief@gazelle ~/.doom3/darkmod ╰─$ DOOM 1.3.1.1304 linux-x86 Jan 16 2007 21:58:02 found interface lo - loopback found interface wlan0 - 172.24.5.189/255.255.0.0 ------ Initializing File System ------ Loaded pk4 /home/rief/games/doom3/base/game00.pk4 with checksum 0xf07eb555 Loaded pk4 /home/rief/games/doom3/base/game01.pk4 with checksum 0x51c6981f Loaded pk4 /home/rief/games/doom3/base/game02.pk4 with checksum 0xf3ec6f7 Loaded pk4 /home/rief/games/doom3/base/game03.pk4 with checksum 0x5d4230ea Loaded pk4 /home/rief/games/doom3/base/pak000.pk4 with checksum 0x28d208f1 Loaded pk4 /home/rief/games/doom3/base/pak001.pk4 with checksum 0x40244be0 Loaded pk4 /home/rief/games/doom3/base/pak002.pk4 with checksum 0xc51ecdcd Loaded pk4 /home/rief/games/doom3/base/pak003.pk4 with checksum 0xcd79d028 Loaded pk4 /home/rief/games/doom3/base/pak004.pk4 with checksum 0x765e4f8b Loaded pk4 /home/rief/games/doom3/base/pak005.pk4 with checksum 0x8ffc3621 Loaded pk4 /home/rief/games/doom3/base/pak006.pk4 with checksum 0x95b65ab Loaded pk4 /home/rief/games/doom3/base/pak007.pk4 with checksum 0x666bdb3c Loaded pk4 /home/rief/games/doom3/base/pak008.pk4 with checksum 0x23ae5993 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_animals01.pk4 with checksum 0xacda2bb Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_base01.pk4 with checksum 0xf42f339d Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_builders01.pk4 with checksum 0xcb2854bf Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_females01.pk4 with checksum 0x1b2a6a31 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_guards01.pk4 with checksum 0x33ca6394 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_heads01.pk4 with checksum 0x5dd21227 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_mages01.pk4 with checksum 0x4fb92e26 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_nobles01.pk4 with checksum 0xe4ff336c Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_pagans01.pk4 with checksum 0xa1349247 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_townsfolk01.pk4 with checksum 0x8ddbd904 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_humanoid_undead01.pk4 with checksum 0x2477a779 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_monsters_spiders01.pk4 with checksum 0x792b0ca5 Loaded pk4 /home/rief/.doom3/darkmod/tdm_ai_steambots01.pk4 with checksum 0x731159a8 Loaded pk4 /home/rief/.doom3/darkmod/tdm_base01.pk4 with checksum 0xfb74186c Loaded pk4 /home/rief/.doom3/darkmod/tdm_defs01.pk4 with checksum 0x31417173 Loaded pk4 /home/rief/.doom3/darkmod/tdm_env01.pk4 with checksum 0x70046471 Loaded pk4 /home/rief/.doom3/darkmod/tdm_fonts01.pk4 with checksum 0x4d337925 Loaded pk4 /home/rief/.doom3/darkmod/tdm_game01.pk4 with checksum 0xab7fd2d2 Loaded pk4 /home/rief/.doom3/darkmod/tdm_game02.pk4 with checksum 0x4a1b32fc Loaded pk4 /home/rief/.doom3/darkmod/tdm_game03.pk4 with checksum 0x1c4edae4 Loaded pk4 /home/rief/.doom3/darkmod/tdm_gui01.pk4 with checksum 0x63a09f0e Loaded pk4 /home/rief/.doom3/darkmod/tdm_gui_credits01.pk4 with checksum 0x5b1d7253 Loaded pk4 /home/rief/.doom3/darkmod/tdm_models01.pk4 with checksum 0x16c8a70a Loaded pk4 /home/rief/.doom3/darkmod/tdm_models02.pk4 with checksum 0x3d12c87e Loaded pk4 /home/rief/.doom3/darkmod/tdm_models_decls01.pk4 with checksum 0x92c43427 Loaded pk4 /home/rief/.doom3/darkmod/tdm_player01.pk4 with checksum 0xe4d3e6fd Loaded pk4 /home/rief/.doom3/darkmod/tdm_prefabs01.pk4 with checksum 0x838252d0 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_ambient01.pk4 with checksum 0x40500cb Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_ambient02.pk4 with checksum 0x666b0cac Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_ambient03.pk4 with checksum 0xfa3d0336 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_ambient_decls01.pk4 with checksum 0x1f53dda2 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_sfx01.pk4 with checksum 0x8d3d8fa7 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_sfx02.pk4 with checksum 0x6a7ee5ef Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals01.pk4 with checksum 0x749a24b6 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals02.pk4 with checksum 0x3ce30b71 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals03.pk4 with checksum 0xfbc08dea Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals04.pk4 with checksum 0x6bae7076 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals05.pk4 with checksum 0x8bc0bbe1 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals06.pk4 with checksum 0xe1f2a386 Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals07.pk4 with checksum 0xe7d94add Loaded pk4 /home/rief/.doom3/darkmod/tdm_sound_vocals_decls01.pk4 with checksum 0x1a0de03d Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_base01.pk4 with checksum 0x87f7f590 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_carpet01.pk4 with checksum 0xcc1e2e32 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_decals01.pk4 with checksum 0x7e7ce54e Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_door01.pk4 with checksum 0xda543894 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_fabric01.pk4 with checksum 0x7c12c7ad Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_glass01.pk4 with checksum 0x5fa01a26 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_metal01.pk4 with checksum 0x173ce02a Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_nature01.pk4 with checksum 0x444352b6 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_paint_paper01.pk4 with checksum 0xf4cab8d7 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_plaster01.pk4 with checksum 0xf1b2549c Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_roof01.pk4 with checksum 0x2efab03d Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_sfx01.pk4 with checksum 0xff5da4d5 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_stone_brick01.pk4 with checksum 0xe942a997 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_stone_cobblestones01.pk4 with checksum 0xb215367c Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_stone_flat01.pk4 with checksum 0xc063445 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_stone_natural01.pk4 with checksum 0x6cd8c52a Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_stone_sculpted01.pk4 with checksum 0xf225aa20 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_window01.pk4 with checksum 0xdb10db90 Loaded pk4 /home/rief/.doom3/darkmod/tdm_textures_wood01.pk4 with checksum 0xe96a8d66 Current search path: /home/rief/.doom3/darkmod /home/rief/.doom3/darkmod/tdm_textures_wood01.pk4 (293 files) /home/rief/.doom3/darkmod/tdm_textures_window01.pk4 (226 files) /home/rief/.doom3/darkmod/tdm_textures_stone_sculpted01.pk4 (304 files) /home/rief/.doom3/darkmod/tdm_textures_stone_natural01.pk4 (99 files) /home/rief/.doom3/darkmod/tdm_textures_stone_flat01.pk4 (256 files) /home/rief/.doom3/darkmod/tdm_textures_stone_cobblestones01.pk4 (185 files) /home/rief/.doom3/darkmod/tdm_textures_stone_brick01.pk4 (350 files) /home/rief/.doom3/darkmod/tdm_textures_sfx01.pk4 (32 files) /home/rief/.doom3/darkmod/tdm_textures_roof01.pk4 (65 files) /home/rief/.doom3/darkmod/tdm_textures_plaster01.pk4 (96 files) /home/rief/.doom3/darkmod/tdm_textures_paint_paper01.pk4 (22 files) /home/rief/.doom3/darkmod/tdm_textures_nature01.pk4 (193 files) /home/rief/.doom3/darkmod/tdm_textures_metal01.pk4 (329 files) /home/rief/.doom3/darkmod/tdm_textures_glass01.pk4 (30 files) /home/rief/.doom3/darkmod/tdm_textures_fabric01.pk4 (38 files) /home/rief/.doom3/darkmod/tdm_textures_door01.pk4 (155 files) /home/rief/.doom3/darkmod/tdm_textures_decals01.pk4 (226 files) /home/rief/.doom3/darkmod/tdm_textures_carpet01.pk4 (71 files) /home/rief/.doom3/darkmod/tdm_textures_base01.pk4 (159 files) /home/rief/.doom3/darkmod/tdm_sound_vocals_decls01.pk4 (23 files) /home/rief/.doom3/darkmod/tdm_sound_vocals07.pk4 (1083 files) /home/rief/.doom3/darkmod/tdm_sound_vocals06.pk4 (661 files) /home/rief/.doom3/darkmod/tdm_sound_vocals05.pk4 (80 files) /home/rief/.doom3/darkmod/tdm_sound_vocals04.pk4 (1258 files) /home/rief/.doom3/darkmod/tdm_sound_vocals03.pk4 (722 files) /home/rief/.doom3/darkmod/tdm_sound_vocals02.pk4 (1335 files) /home/rief/.doom3/darkmod/tdm_sound_vocals01.pk4 (66 files) /home/rief/.doom3/darkmod/tdm_sound_sfx02.pk4 (549 files) /home/rief/.doom3/darkmod/tdm_sound_sfx01.pk4 (457 files) /home/rief/.doom3/darkmod/tdm_sound_ambient_decls01.pk4 (8 files) /home/rief/.doom3/darkmod/tdm_sound_ambient03.pk4 (24 files) /home/rief/.doom3/darkmod/tdm_sound_ambient02.pk4 (148 files) /home/rief/.doom3/darkmod/tdm_sound_ambient01.pk4 (151 files) /home/rief/.doom3/darkmod/tdm_prefabs01.pk4 (440 files) /home/rief/.doom3/darkmod/tdm_player01.pk4 (123 files) /home/rief/.doom3/darkmod/tdm_models_decls01.pk4 (88 files) /home/rief/.doom3/darkmod/tdm_models02.pk4 (1770 files) /home/rief/.doom3/darkmod/tdm_models01.pk4 (1533 files) /home/rief/.doom3/darkmod/tdm_gui_credits01.pk4 (49 files) /home/rief/.doom3/darkmod/tdm_gui01.pk4 (661 files) /home/rief/.doom3/darkmod/tdm_game03.pk4 (2 files) /home/rief/.doom3/darkmod/tdm_game02.pk4 (2 files) /home/rief/.doom3/darkmod/tdm_game01.pk4 (2 files) /home/rief/.doom3/darkmod/tdm_fonts01.pk4 (731 files) /home/rief/.doom3/darkmod/tdm_env01.pk4 (92 files) /home/rief/.doom3/darkmod/tdm_defs01.pk4 (147 files) /home/rief/.doom3/darkmod/tdm_base01.pk4 (125 files) /home/rief/.doom3/darkmod/tdm_ai_steambots01.pk4 (27 files) /home/rief/.doom3/darkmod/tdm_ai_monsters_spiders01.pk4 (89 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_undead01.pk4 (29 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_townsfolk01.pk4 (65 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_pagans01.pk4 (8 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_nobles01.pk4 (51 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_mages01.pk4 (7 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_heads01.pk4 (64 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_guards01.pk4 (286 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_females01.pk4 (138 files) /home/rief/.doom3/darkmod/tdm_ai_humanoid_builders01.pk4 (84 files) /home/rief/.doom3/darkmod/tdm_ai_base01.pk4 (8 files) /home/rief/.doom3/darkmod/tdm_ai_animals01.pk4 (76 files) /home/rief/games/doom3/darkmod /home/rief/.doom3/base /home/rief/games/doom3/base /home/rief/games/doom3/base/pak008.pk4 (3 files) /home/rief/games/doom3/base/pak007.pk4 (38 files) /home/rief/games/doom3/base/pak006.pk4 (48 files) /home/rief/games/doom3/base/pak005.pk4 (63 files) /home/rief/games/doom3/base/pak004.pk4 (5137 files) /home/rief/games/doom3/base/pak003.pk4 (4676 files) /home/rief/games/doom3/base/pak002.pk4 (6120 files) /home/rief/games/doom3/base/pak001.pk4 (8972 files) /home/rief/games/doom3/base/pak000.pk4 (2698 files) /home/rief/games/doom3/base/game03.pk4 (2 files) /home/rief/games/doom3/base/game02.pk4 (2 files) /home/rief/games/doom3/base/game01.pk4 (2 files) /home/rief/games/doom3/base/game00.pk4 (2 files) game DLL: 0x0 in pak: 0x0 Addon pk4s: file system initialized. -------------------------------------- ----- Initializing Decls ----- ------------------------------ ------- Initializing renderSystem -------- using ARB renderSystem renderSystem initialized. -------------------------------------- 1141 strings read from strings/english.lang Couldn't open journal files execing editor.cfg execing default.cfg execing DoomConfig.cfg couldn't exec autoexec.cfg 1141 strings read from strings/english.lang ----- Initializing Sound System ------ sound system initialized. -------------------------------------- ----- R_InitOpenGL ----- Setup X display connection dlopen(libGL.so.1) Initializing OpenGL display Using XFree86-VidModeExtension Version 2.2 DGA DirectVideo Mouse (Version 2.0) initialized XFree86-VidModeExtension: not fullscreen, ignored Using 8/8/8 Color bits, 8 Alpha bits, 24 depth, 8 stencil display. GL_RENDERER: Mesa DRI Intel(R) Ivybridge Mobile x86/MMX/SSE2 GL_EXTENSIONS: GL_ARB_multisample GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_copy_texture GL_EXT_polygon_offset GL_EXT_subtexture GL_EXT_texture_object GL_EXT_vertex_array GL_EXT_compiled_vertex_array GL_EXT_texture GL_EXT_texture3D GL_IBM_rasterpos_clip GL_ARB_point_parameters GL_EXT_draw_range_elements GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_separate_specular_color GL_EXT_texture_edge_clamp GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_ARB_framebuffer_sRGB GL_ARB_multitexture GL_EXT_framebuffer_sRGB GL_IBM_multimode_draw_arrays GL_IBM_texture_mirrored_repeat GL_3DFX_texture_compression_FXT1 GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_transpose_matrix GL_EXT_blend_func_separate GL_EXT_fog_coord GL_EXT_multi_draw_arrays GL_EXT_secondary_color GL_EXT_texture_env_add GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_INGR_blend_func_separate GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texgen_reflection GL_NV_texture_env_combine4 GL_SUN_multi_draw_arrays GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_EXT_framebuffer_object GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_MESA_window_pos GL_NV_packed_depth_stencil GL_NV_texture_rectangle GL_NV_vertex_program GL_ARB_depth_texture GL_ARB_occlusion_query GL_ARB_shadow GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_window_pos GL_ATI_envmap_bumpmap GL_EXT_stencil_two_side GL_EXT_texture_cube_map GL_NV_depth_clamp GL_NV_vertex_program1_1 GL_APPLE_packed_pixels GL_APPLE_vertex_array_object GL_ARB_draw_buffers GL_ARB_fragment_program GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_vertex_program GL_ARB_vertex_shader GL_ATI_draw_buffers GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_ARB_depth_clamp GL_ARB_fragment_program_shadow GL_ARB_half_float_pixel GL_ARB_point_sprite GL_ARB_shading_language_100 GL_ARB_sync GL_ARB_texture_non_power_of_two GL_ARB_vertex_buffer_object GL_ATI_blend_equation_separate GL_EXT_blend_equation_separate GL_OES_read_format GL_ARB_color_buffer_float GL_ARB_pixel_buffer_object GL_ARB_texture_compression_rgtc GL_ARB_texture_float GL_ARB_texture_rectangle GL_EXT_packed_float GL_EXT_pixel_buffer_object GL_EXT_texture_compression_rgtc GL_EXT_texture_rectangle GL_EXT_texture_sRGB GL_EXT_texture_shared_exponent GL_ARB_framebuffer_object GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXT_packed_depth_stencil GL_APPLE_object_purgeable GL_ARB_vertex_array_object GL_ATI_separate_stencil GL_EXT_draw_buffers2 GL_EXT_gpu_program_parameters GL_EXT_texture_array GL_EXT_texture_integer GL_EXT_texture_sRGB_decode GL_EXT_timer_query GL_OES_EGL_image GL_MESA_texture_array GL_ARB_copy_buffer GL_ARB_depth_buffer_float GL_ARB_half_float_vertex GL_ARB_map_buffer_range GL_ARB_texture_rg GL_ARB_texture_swizzle GL_ARB_vertex_array_bgra GL_EXT_separate_shader_objects GL_EXT_texture_swizzle GL_EXT_vertex_array_bgra GL_NV_conditional_render GL_ARB_ES2_compatibility GL_ARB_draw_elements_base_vertex GL_ARB_explicit_attrib_location GL_ARB_fragment_coord_conventions GL_ARB_provoking_vertex GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_shader_texture_lod GL_EXT_provoking_vertex GL_EXT_texture_snorm GL_MESA_texture_signed_rgba GL_ARB_robustness ------- Input Initialization ------- XKB extension: compile time 0x1:0x0, runtime 0x1:0x0: OK XKB extension present on server ( 0x1:0x0 ) ------------------------------------ dlopen(libasound.so.2) asoundlib version: 1.0.25 Alsa is available ------ Alsa Sound Initialization ----- opened Alsa PCM device default for playback device buffer size: 5461 frames ( 21844 bytes ) allocated a mix buffer of 16384 bytes -------------------------------------- ...using GL_ARB_multitexture ...using GL_ARB_texture_env_combine ...using GL_ARB_texture_cube_map ...using GL_ARB_texture_env_dot3 ...using GL_ARB_texture_env_add ...using GL_ARB_texture_non_power_of_two ...using GL_ARB_texture_compression X..GL_EXT_texture_compression_s3tc not found ...using GL_EXT_texture_filter_anisotropic maxTextureAnisotropy: 16.000000 ...using GL_1.4_texture_lod_bias X..GL_EXT_shared_texture_palette not found ...using GL_EXT_texture3D ...using GL_EXT_stencil_wrap X..GL_NV_register_combiners not found ...using GL_EXT_stencil_two_side X..GL_ATI_fragment_shader not found X..GL_ATI_text_fragment_shader not found ...using GL_ARB_vertex_buffer_object ...using GL_ARB_vertex_program ...using GL_ARB_fragment_program X..EXT_depth_bounds_test not found ---------- R_NV20_Init ---------- Not available. ----------- R200_Init ----------- Not available. ---------- R_ARB2_Init ---------- Available. --------------------------------- ----- R_ReloadARBPrograms ----- glprogs/test.vfp glprogs/test.vfp glprogs/interaction.vfp glprogs/interaction.vfp glprogs/bumpyEnvironment.vfp glprogs/bumpyEnvironment.vfp glprogs/ambientLight.vfp glprogs/ambientLight.vfp glprogs/shadow.vp glprogs/R200_interaction.vp glprogs/nv20_bumpAndLight.vp glprogs/nv20_diffuseColor.vp glprogs/nv20_specularColor.vp glprogs/nv20_diffuseAndSpecularColor.vp glprogs/environment.vfp glprogs/environment.vfp glprogs/arbVP_glasswarp.txt: File not found glprogs/arbFP_glasswarp.txt: File not found ------------------------------- using ARB_vertex_buffer_object memory using ARB2 renderSystem found DLL in pak file: /home/rief/.doom3/darkmod/tdm_game02.pk4/gamex86.so copy gamex86.so to /home/rief/.doom3/darkmod/gamex86.so Found Intel CPU with Hyper-Threading enabled, features: MMX SSE SSE2 SSE3 CMOV game using generic code for SIMD processing. --------- Initializing Game ---------- The Dark Mod 1.07, code revision 5048 Build date: Nov 23 2011 Initializing event system ...780 event definitions Initializing class hierarchy ...166 classes, 761280 bytes for event callbacks Initializing scripts /proc/cpuinfo CPU frequency: 2301 MHz Compiled 'removeInitialSplineAngles': 104.4 ms ---------- Compile stats ---------- Memory usage: Strings: 42, 6672 bytes Statements: 18129, 362580 bytes Functions: 1128, 115356 bytes Variables: 82736 bytes Mem used: 1034592 bytes Static data: 2277552 bytes Allocated: 2778072 bytes Thread size: 7068 bytes ...5 aas types game initialized. -------------------------------------- Parsing material files WARNING: Cannot find character remapping for language english. 1141 strings read from strings/english.lang I18N: 'strings/fm/english.lang' not found. I18N: 'strings/fm/english.lang' not found, skipping it. WARNING: Cannot find guis/mainmenu.gui Current language: english Found 0 new mission packages. Found 1 mods in the FM folder. Parsed 0 mission declarations, no mission database file present. -------- Initializing Session -------- WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure1 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure2 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure3 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure4 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure5 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure6 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure7 WARNING: Couldn't load image: guis/assets/credits/priest WARNING: Couldn't load image: guis/assets/credits/concept01 WARNING: Couldn't load image: guis/assets/credits/characters WARNING: Couldn't load image: guis/assets/mainmenu/background_empty WARNING: Couldn't load image: guis/assets/mission_failure/fog WARNING: Couldn't load image: guis/assets/mainmenu/parchment_mainmenu WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_0_12 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_0_24 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_1_24 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_0_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_1_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_2_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_3_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_6_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_4_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_5_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_0_12 WARNING: Couldn't load image: fonts/english/carleton/carleton_0_24 WARNING: Couldn't load image: fonts/english/carleton/carleton_1_24 WARNING: Couldn't load image: fonts/english/carleton/carleton_0_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_1_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_2_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_3_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_6_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_4_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_5_48 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop3 WARNING: Couldn't load image: guis/assets/mainmenu/parchment_newgame WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_0_12 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_0_24 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_1_24 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_0_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_1_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_2_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_3_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_6_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_4_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_5_48 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop4 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop5 WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/icon_completed WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_up WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_down WARNING: Couldn't load image: guis/assets/credits/studio_headline_bg WARNING: Couldn't load image: guis/assets/credits/studio_headline WARNING: Couldn't load image: guis/assets/mainmenu/parchment_load WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop2 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_0_12 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_0_24 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_1_24 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_0_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_1_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_2_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_3_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_4_48 WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/loadmission WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/loadmission_lit WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/savemission WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/savemission_lit WARNING: Couldn't load image: guis/assets/briefing/parchment WARNING: Couldn't load image: guis/assets/briefing/nextpage WARNING: Couldn't load image: guis/assets/briefing/prevpage WARNING: Couldn't load image: guis/assets/mission_success/background_success WARNING: Couldn't load image: guis/assets/mission_success/gleam1 WARNING: Couldn't load image: guis/assets/mission_success/stats_parchment WARNING: Couldn't load image: guis/assets/objectives/parchment_untitled WARNING: Couldn't load image: guis/assets/objectives/box_default WARNING: Couldn't load image: guis/assets/objectives/nextpage WARNING: Couldn't load image: guis/assets/objectives/prevpage WARNING: Couldn't load image: guis/assets/purchase_menu/parchment_shop WARNING: Couldn't load image: guis/assets/mainmenu/buttons_settingsmenu/slider_bg WARNING: Couldn't load image: guis/assets/mainmenu/buttons_settingsmenu/slider_bar1 WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_audio WARNING: Couldn't load image: guis/assets/mainmenu/checkmark_green WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_video WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_gameplay WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_controls WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_up_hover WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_down_hover WARNING: Couldn't load image: guis/assets/mainmenu/parchment_download_right WARNING: Couldn't load image: guis/assets/mainmenu/parchment_download_left WARNING: Couldn't load image: guis/assets/mainmenu/downloadable_mission_details WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop6 WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/mission_details WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/mission_description WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/screenshots WARNING: Couldn't load image: guis/assets/mainmenu/ornament_horizontal WARNING: Couldn't load image: guis/assets/mainmenu/loading WARNING: Couldn't load image: guis/assets/mainmenu/ornament_horizontal_short WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop6_overlay WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/no_screens_available WARNING: Couldn't load image: guis/assets/credits/01_the_dark_mod WARNING: Couldn't load image: guis/assets/credits/02_mod_founder WARNING: Couldn't load image: guis/assets/credits/03_mod_infrastructure WARNING: Couldn't load image: guis/assets/credits/04_art_lead WARNING: Couldn't load image: guis/assets/credits/10_3d_design_lead WARNING: Couldn't load image: guis/assets/credits/11_2d_lead WARNING: Couldn't load image: guis/assets/credits/08_sound_lead WARNING: Couldn't load image: guis/assets/credits/09_vocal_leads WARNING: Couldn't load image: guis/assets/credits/code WARNING: Couldn't load image: guis/assets/credits/05_lead_coder WARNING: Couldn't load image: guis/assets/credits/06_coding_team WARNING: Couldn't load image: guis/assets/credits/07_additional_coding WARNING: Couldn't load image: guis/assets/credits/12_gui_coding WARNING: Couldn't load image: guis/assets/credits/13_shader_programming WARNING: Couldn't load image: guis/assets/credits/14_sfx WARNING: Couldn't load image: guis/assets/credits/15_ambient WARNING: Couldn't load image: guis/assets/credits/16_vocal_actors WARNING: Couldn't load image: guis/assets/credits/17_concept_art WARNING: Couldn't load image: guis/assets/credits/18_texture_artists WARNING: Couldn't load image: guis/assets/credits/19_char_modeling WARNING: Couldn't load image: guis/assets/credits/20_animations WARNING: Couldn't load image: guis/assets/credits/21_modeling WARNING: Couldn't load image: guis/assets/credits/21_additional_modeling WARNING: Couldn't load image: guis/assets/credits/22_qa WARNING: Couldn't load image: guis/assets/credits/23_mapping WARNING: Couldn't load image: guis/assets/credits/24_release_packaging WARNING: Couldn't load image: guis/assets/credits/25_dr_leads WARNING: Couldn't load image: guis/assets/credits/26_additional_dr WARNING: Couldn't load image: guis/assets/credits/28_additional_textures WARNING: Couldn't load image: guis/assets/credits/29_special_thanks WARNING: Couldn't load image: guis/assets/credits/30_website WARNING: Couldn't load image: guis/assets/objectives/nextpage_lit WARNING: Couldn't load image: guis/assets/objectives/prevpage_lit WARNING: Couldn't load image: guis/assets/objectives/box_checked WARNING: Couldn't load image: guis/assets/objectives/box_failed WARNING: Couldn't load image: guis/assets/mission_failure/background_shading WARNING: Couldn't load image: guis/assets/mission_failure/barred_window WARNING: Couldn't load image: guis/assets/mission_failure/skull WARNING: Couldn't load image: guis/assets/mission_failure/chain WARNING: Couldn't load image: guis/assets/objectives/parchment_ingame session initialized -------------------------------------- Opening IP socket: localhost:-1 --- Common Initialization Complete --- ------------- Warnings --------------- during DOOM 3 initialization... WARNING: Cannot find character remapping for language english. WARNING: Cannot find guis/mainmenu.gui WARNING: Couldn't load image: fonts/english/carleton/carleton_0_12 WARNING: Couldn't load image: fonts/english/carleton/carleton_0_24 WARNING: Couldn't load image: fonts/english/carleton/carleton_0_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_1_24 WARNING: Couldn't load image: fonts/english/carleton/carleton_1_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_2_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_3_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_4_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_5_48 WARNING: Couldn't load image: fonts/english/carleton/carleton_6_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_0_12 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_0_24 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_0_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_1_24 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_1_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_2_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_3_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_4_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_5_48 WARNING: Couldn't load image: fonts/english/carleton_bold/carleton_6_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_0_12 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_0_24 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_0_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_1_24 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_1_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_2_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_3_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_4_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_5_48 WARNING: Couldn't load image: fonts/english/carleton_glow/carleton_6_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_0_12 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_0_24 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_0_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_1_24 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_1_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_2_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_3_48 WARNING: Couldn't load image: fonts/english/jd_hand/jd_hand_4_48 WARNING: Couldn't load image: guis/assets/briefing/nextpage WARNING: Couldn't load image: guis/assets/briefing/parchment WARNING: Couldn't load image: guis/assets/briefing/prevpage WARNING: Couldn't load image: guis/assets/credits/01_the_dark_mod WARNING: Couldn't load image: guis/assets/credits/02_mod_founder WARNING: Couldn't load image: guis/assets/credits/03_mod_infrastructure WARNING: Couldn't load image: guis/assets/credits/04_art_lead WARNING: Couldn't load image: guis/assets/credits/05_lead_coder WARNING: Couldn't load image: guis/assets/credits/06_coding_team WARNING: Couldn't load image: guis/assets/credits/07_additional_coding WARNING: Couldn't load image: guis/assets/credits/08_sound_lead WARNING: Couldn't load image: guis/assets/credits/09_vocal_leads WARNING: Couldn't load image: guis/assets/credits/10_3d_design_lead WARNING: Couldn't load image: guis/assets/credits/11_2d_lead WARNING: Couldn't load image: guis/assets/credits/12_gui_coding WARNING: Couldn't load image: guis/assets/credits/13_shader_programming WARNING: Couldn't load image: guis/assets/credits/14_sfx WARNING: Couldn't load image: guis/assets/credits/15_ambient WARNING: Couldn't load image: guis/assets/credits/16_vocal_actors WARNING: Couldn't load image: guis/assets/credits/17_concept_art WARNING: Couldn't load image: guis/assets/credits/18_texture_artists WARNING: Couldn't load image: guis/assets/credits/19_char_modeling WARNING: Couldn't load image: guis/assets/credits/20_animations WARNING: Couldn't load image: guis/assets/credits/21_additional_modeling WARNING: Couldn't load image: guis/assets/credits/21_modeling WARNING: Couldn't load image: guis/assets/credits/22_qa WARNING: Couldn't load image: guis/assets/credits/23_mapping WARNING: Couldn't load image: guis/assets/credits/24_release_packaging WARNING: Couldn't load image: guis/assets/credits/25_dr_leads WARNING: Couldn't load image: guis/assets/credits/26_additional_dr WARNING: Couldn't load image: guis/assets/credits/28_additional_textures WARNING: Couldn't load image: guis/assets/credits/29_special_thanks WARNING: Couldn't load image: guis/assets/credits/30_website WARNING: Couldn't load image: guis/assets/credits/characters WARNING: Couldn't load image: guis/assets/credits/code WARNING: Couldn't load image: guis/assets/credits/concept01 WARNING: Couldn't load image: guis/assets/credits/priest WARNING: Couldn't load image: guis/assets/credits/studio_headline WARNING: Couldn't load image: guis/assets/credits/studio_headline_bg WARNING: Couldn't load image: guis/assets/mainmenu/background_empty WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/loadmission WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/loadmission_lit WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/savemission WARNING: Couldn't load image: guis/assets/mainmenu/buttons_loadsave/savemission_lit WARNING: Couldn't load image: guis/assets/mainmenu/buttons_settingsmenu/slider_bar1 WARNING: Couldn't load image: guis/assets/mainmenu/buttons_settingsmenu/slider_bg WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_down WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_down_hover WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_up WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/arrow_up_hover WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/icon_completed WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/mission_description WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/mission_details WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/no_screens_available WARNING: Couldn't load image: guis/assets/mainmenu/buttons_start/screenshots WARNING: Couldn't load image: guis/assets/mainmenu/checkmark_green WARNING: Couldn't load image: guis/assets/mainmenu/downloadable_mission_details WARNING: Couldn't load image: guis/assets/mainmenu/loading WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop2 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop3 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop4 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop5 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop6 WARNING: Couldn't load image: guis/assets/mainmenu/oldparchment_backdrop6_overlay WARNING: Couldn't load image: guis/assets/mainmenu/ornament_horizontal WARNING: Couldn't load image: guis/assets/mainmenu/ornament_horizontal_short WARNING: Couldn't load image: guis/assets/mainmenu/parchment_download_left WARNING: Couldn't load image: guis/assets/mainmenu/parchment_download_right WARNING: Couldn't load image: guis/assets/mainmenu/parchment_load WARNING: Couldn't load image: guis/assets/mainmenu/parchment_mainmenu WARNING: Couldn't load image: guis/assets/mainmenu/parchment_newgame WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_audio WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_controls WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_gameplay WARNING: Couldn't load image: guis/assets/mainmenu/parchment_settings_video WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure1 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure2 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure3 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure4 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure5 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure6 WARNING: Couldn't load image: guis/assets/mainmenu/sidefigure7 WARNING: Couldn't load image: guis/assets/mission_failure/background_shading WARNING: Couldn't load image: guis/assets/mission_failure/barred_window WARNING: Couldn't load image: guis/assets/mission_failure/chain WARNING: Couldn't load image: guis/assets/mission_failure/fog WARNING: Couldn't load image: guis/assets/mission_failure/skull WARNING: Couldn't load image: guis/assets/mission_success/background_success WARNING: Couldn't load image: guis/assets/mission_success/gleam1 WARNING: Couldn't load image: guis/assets/mission_success/stats_parchment WARNING: Couldn't load image: guis/assets/objectives/box_checked WARNING: Couldn't load image: guis/assets/objectives/box_default WARNING: Couldn't load image: guis/assets/objectives/box_failed WARNING: Couldn't load image: guis/assets/objectives/nextpage WARNING: Couldn't load image: guis/assets/objectives/nextpage_lit WARNING: Couldn't load image: guis/assets/objectives/parchment_ingame WARNING: Couldn't load image: guis/assets/objectives/parchment_untitled WARNING: Couldn't load image: guis/assets/objectives/prevpage WARNING: Couldn't load image: guis/assets/objectives/prevpage_lit WARNING: Couldn't load image: guis/assets/purchase_menu/parchment_shop 141 warnings terminal support enabled ( use +set in_tty 0 to disabled ) pid: 7677 7888 MB System Memory 256 MB Video Memory Async thread started snd_pcm_writei 4096 frames failed: Broken pipe preparing audio device for output snd_pcm_writei 4096 frames failed: Broken pipe preparing audio device for output
  24. Woo!! 2.10 Beta "Release Candidate" ( 210-07 ) is out:

    https://forums.thedarkmod.com/index.php?/topic/21198-beta-testing-210/

    It wont be long now :) ...

  25. It is possible to override "core" files in TDM, without messing with the original files, from the beginning. This is a feature of the Doom 3 engine and obviously transitioned into TDM. In Doom 3 and TDM, you just make a copy of a def, mtr or any other file inside your mod or mission folder, respect the same virtual file path from the originals and the modified files will take precedence over the files inside the .pk4's. This could be used by mission makers to for example override the "noshadows" from some alpha materials, for example to permit trees, grass, banners, etc, in their mission to cast shadow maps, something the core materials can't do because they are limited by the need to support the old stencil shadows. But a brave mission maker, could recommend players to only use shadow maps on their mission and say, if a player wants stencil shadows they will have to accept that trees will cast ugly shadows. (I'm sure there's ways to automatically disable shadows for trees and such, when a user sets stencil shadows on, but it may take a bit of scripting madness...)
×
×
  • Create New...