Jump to content
The Dark Mod Forums

Search the Community

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

  • 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. Here is the list of new cvars and commands: GENERIC r_volumetricSamples, r_volumetricDither --- quality settings of the new volumetric lights. tdm_show_menu_tooltips --- can disable tooptips in the main menu. r_frobOutlinePreset --- a command to switch between different preset styles of frob-highlight outlines. It modifies various outline-related cvars, setting them to predefined values. You can later adjust them individually. r_newFrob, r_frob* --- a bunch of cvars for tweaking the new frob-highlight outline. Here are the main ones: *) r_newFrob controls surfaces highlighting *) r_frobOutlinePreset controls outline around highlighted objects con_fontSize, con_fontColor --- allows to adjust font of game console, e.g. make it smaller so see more text on one page. DEBUGGING ONLY image_levelLoadParallel, image_useTexStorage, image_mipmapMode --- various switches to optimize loading times. We have already seen several issues caused by image_useTexStorage, and there may be more... tdm_drag_new, tdm_drag2_* --- cvar to enable new dragging behavior, plus a bunch of cvars for tweaking how it works. If dragging, carrying, pulling or throwing does not work well, you can try switching tdm_drag_new back to 0 to see if the problem is caused by the new grabber code. r_spotlightBehavior --- changes the way how spotlights (projected lights) compute their light volume, and how projection and falloff textures are applied. If projected lights look wrong on a map, you may try a few options to see if this was broken by 2.10 or was wrong from the very beginning. Note: map restart is required for the change to take effect. dmap_compatibility --- switch some parts of dmap code to older algorithms which were used in previous version of TDM. Note that it does not perfectly reproduce behavior of old dmap, because it is too hard to put every improvement under "if". This cvar can be used to dmap an old map if you don't intend to rework it in major way (although you should still test it thoroughly if you want to release the newly dmapped version).
  2. PLAYERS 1) A lot of effort was put into optimizing loading times. It includes: better integration of decompression, multithreading, immutable texture storage, handwritten normal map compression and mipmap generation, removing artificial delays. As the result, we even had to modify loading screens of some missions, because allocated 10% of loading time was no longer enough for a player to read the hint 2) Generic performance improvements were done too. Most importantly, we fixed performance regressions since 2.07: rendering static geometry (5598) and soft stencil shadows with antialiasing. This hardly makes a difference, but it is nice to know that TDM can now use AVX instructions on Linux builds too. 3) We made some changes to window / input systems. Most importantly, Linux build now relies on GLFW library to create window and handle keyboard / mouse (thread), so a lot of the issues with OS integration on Linux should go away. On the Windows side, some minor changes were made to fullscreen/borderless modes. 4) New implementation of object dragging / manipulation (thread) Afraid to grab a candle near a sleeping guard? Hopefully, you will make less noise while moving objects in 2.10. And if you hold the creep button, the moved item will not make any noise at all. Also, dragging unconscious bodies should feel better now. Rats slighty spoiled the joy of this improvement (rats often do), but hopefully it is fixed now Finally, now you can control how far a rock flies by holding throw button for a different amount of time. 5) New visual style for frob-highlighting objects. This point is still surrounded by debates though (thread, poll), so the fate of the frob outline is yet uncertain. 6) Tooltips are now shown in the main menu. Perhaps the text is not perfect yet, but this is a birth of the long-awaited feature! 7) Tweaked starting new mission in the main menu. The old way of "installing" and starting missions was quite confusing for newcomers. So we reorganized the main menu a bit, and now it is hopefully more intuitive. MAPPING 1) Entity limit is no more (thread). Well, number of entities is technically capped by 65536, but I don't think it can be reached by ordinary mapping. You should no longer use the insane tricks of the past striving to reduce the number of entities (unless the tricks have other benefits, of course). 2) Behavior of spotlights (projected lights) reverted back to how they worked in 2.07. It means that the missions released before 2.08 should now look as intended. The sad thing is that the missions with projected lights tweaked for 2.08 or 2.09 are probably a bit off now. Also, fixed a bug that spotlights illuminated surfaces outside their light volumes. 3) Security camera improved. Security cameras have been reworked from the ground up with the aim of bringing them to the same level of polish as TDM's AIs, both when it comes to stealth gameplay and how mappers can work with them and customize them. Most importantly, security cameras in new FMs will track the player once they catch sight of him rather than freezing in place, making them considerably harder to shake off. All the details can be seen on the wiki page. 4) Volumetric lights can now be used on projected lights (thread). Unlike adding fake translucent geometry, the real volumetric lights automatically match their source light, including light volume geometry, projection & falloff texture, and even shadows. Full description of available settings is available on the wiki page. 5) X-ray screens feature added. This feature that was originally in Doom 3, has been reintroduced to TDM and developed further. The screens are able to change the appearance of entities seen through them, even making them appear or disappear if desired. Look out for them in future Inventors Guild and magical themed FMs. You can find the thread here with links to the relevant wiki articles. l 6) Added a system for tracking secrets. Now it is easy to set up, with no custom scripts required. They'll also be shown on the mission statistics screen at the end of the mission, if the FM uses the new system. More can be read on the wiki page. 7) Main menu GUI has been reworked to allow more customization. Mappers can change music, background, disable screens in the uniform way. Debriefing videos work exactly as briefing videos do. The same customizations can be applied to ordinary missions and separately to every mission in campaign. You can find more details in guis/mainmenu_custom_defs.gui inside tdm_gui01.pk4. A lot of the released missions were updated to use the new customization system (thread). Which unfortunately means that their customizations won't work in 2.09 and earlier versions anymore. 8| Dmap times have been reduced (thread). Optimizations were made all over the dmap code, adding some new algorithms and data structures. Of course, the time difference varies between maps. As a side product, precision has been improved in a few places. 9) Added location diagnostics to dmap (thread). Setting up location entities and separators is an error-prone process, and previously there was no good way to find the error. Now dmap will post warnings and even produce pointfiles in case something is wrong with locations, similar to already existing visportal diagnostics. 10) Added native support for PNG image format. Now PNG images can be used in materials. In some cases PNG is a good alternative to TGA for uncompressed images. Note however, that loading PNG is slower than loading TGA, and we have yet to discover if this is a problem or not. As a side note, DDS images can now be used in image programs, although doing so is discouraged because of additional loss of quality due to compression. 11) Subtitles can now be assigned to sound files (thread). While implementation is a bit raw yet and needs to pass test of time, subtitles have already been added to Saint Lucia prebundled mission. Note that we did not consider localization of subtitles yet (localization as a whole is in weird state in TDM). Full description is available on the wiki page. 12) New script events have been added to the repertoire for use by mappers: a) sys.VecRotate( vector vec, vector angles ) rotates a vector by a set of angles, allowing to match vectors such as offsets to an entity's current orientation. b) entity.getEntityFlag( string flag ) allows to find out properties about entities such as "notarget" (for the player entity) or "invisible". c) $player1.getCalibratedLightgemValue() retrieves the current value of the lightgem, using the same weighting as AIs do. d) entity.setSolid( boolean state ) allows to change the solidity of an entity at runtime. Note that it's still experimental. e) sys.getLocationPoint( vector point ) returns the location of a point in space. f) sys.pointIsInBounds( vector point, vector mins, vector maxs ) evaluates whether a point lies within a volume specified by 2 corner points. g) sys.getTraceSurfType() returns the type of surface the most recent trace has hit, such as "snow", if any. *) Some other improvements: a) Supported "set XXX on head" spawnarg on AIs. b) Some LOD improvements, e.g. for lights. c) Hot reload supports more of the popular spawnargs (i.e. without respawn). d) In-game downloader can update the currently installed mission. ASSETS 1) Automaton AI from Ulysses mission by @Sotha have been added to core, together with new prefabs for (cosmetic) recharging stations to include in patrol routes and a camera screen showing what the automaton sees. 2) @Wellingtoncrab contributed a whole new suite of fancy wooden furniture pieces including prefabs. They can be viewed in their release thread. PROGRAMMING Some interesting things happened on programming side too. First of all, the limited GL profiling has been replaced with Tracy profiler, which has its own cool viewer. It has greatly helped us in our optimization efforts. More technical stuff: generic hash table has been added, Clear in idlib method now works as most programmers expect, unit tests integration has been improved. Another major event that happened this year is migration to the new mission database, based on SVN repository. Hopefully, there will be less confusion about mission updates, and old versions of FMs will not be lost anymore.
  3. The problem with a "theme" system (I think) is that it's forcing the assets into categories they may not fit well into or that don't make sense; or I mean it's forcing the mapper to think in terms of discrete "categories" at all, when that may not be most effective. Whereas a tagging system doesn't impose any "system"... Tags are completely open-ended, and could be at any level of scale or heirarchy -- you could have: bathroom-furniture, made-of-wood, Victorian, X-author's set, good for triggers, items for a bookshelf, architectural, magic, etc, etc... as tags, but not all of those categories make sense as discrete themes with other co-themes at the same level. I guess this is a longwinded say tagging more intuitively lets you target what you want without imposing a structure you have to wedge it into ... just a totally open field of tags from any walk of life. Edit: This is not to say tags should be arbitrarily specific. There should be tags of general categories too of course; even these will be the backbone of the system. But the whole point is tagging allows multiple layers, so you can use the general category tags to start your search, then ween it down with increasingly specific tag sets, whatever is best for the asset set. Some asset sets, or especially combinations, will categorize differently than others, and tagging is ok with that. Edit2: The image I have in my mind anyway is like a photo-collection tagged collection. There's an opening page with a tag cloud with the most common basic tags (general category) the largest in size and minor ones smaller, which you click on and then you get a browser with that set of textures. Then on the left hand bar will be all the tag-combinations within that set (other tags textures in the set are carrying; then in parentheses maybe the number of AND-textures it'd filter down to / OR-new textures they'd bring in), the major tags again larger or highlighted somehow, which if you click one of those new tags, it'd filter the browser to show the AND set. And maybe there's also an option so you could have an OR set and get both (or even select a new OR set from the full tag cloud), which adds new textures into the browser window, and also new sets of tags in the left-bar (the new tags carried by one or more textures in the new set). Also there's a place you could back out of a tag to cut that subset out. So you could open up & winnow down the set as you desire. It ends up a kind of way to browse through the whole collection by navigating through tag AND/OR combinations. Also there's a search bar where you could type in a tag at any time also.
  4. Now I'll admit: I could word things I bring up in a less hasty or panicked matter. I'll admit, I get anxious when I read about the various terrible things reality serves up like a heaping platter of "nope" almost daily. I'm a bit coarse in my language. But one of the things that attracted me to this forum is that not only does it focus on The Dark Mod, which is inspired by the original Thief Trilogy, which I adored growing up but could never get because I was too young at the time, and also because Springheel is rather pro-free-speech, something many forums don't allow or severely limit nowadays in fear of being "CANCELLED". I'll admit I used to be far left, and pro-cancelling whatever offended me. But over the years my literally autistic self matured (mostly) and learned that screeching at people to shut up because you don't like their opinion on how to stop legitimately bad things in the world when ssometimes, freedom does, indeed, need to be defended with force. And, as such, I gradually became more center left. I still consider myself a liberal in the classic sense, a strong supporter of secularism, and a violent opposed of authoritarianism and theocracy and the normalization of ties with theocracies and authoritarian states. I'm very thankful that Springheel allows for his platform to allow us to discuss and theorize about the news of the world, withoutbeing moderated by ban-happy mods. So, when you come here and start acting shifty and saying basically either I go and the forums start shutting up about what you don't like, or else you, as a Fan Mission creator (something I wish I could do but for multiple reasons can't) will leave the forums, especially when you could just ignore any threads I start, makes me dislike you as being a childish, weaselly suckup who takes advantage of The Dark Mod's low amount of developers to try and unspokenly blackmail the forums into censoring itself when you could just not participate in my threads.
  5. DarkRadiant 3.0.0 is ready for download. It took a while, but DarkRadiant 3.0.0 is finally available. Most of the time has been spent on improving DarkRadiant's renderer, which now features shadow mapping support of up to 6 lights. It's still not matching the engine's output (especially in terms of performance), but it should be faster and much more helpful than it was before. The effort that has been put into the renderer rewrite plus the bigger changes in the previous few releases make the jump to the next major version feel more than justified. Besides of that, a lot of non-renderer issues have been resolved in this release too, next to some fine usability improvements. For more things that have changed or fixed, see the list below. Windows and Mac Downloads are available on Github: https://github.com/codereader/DarkRadiant/releases/tag/3.0.0 and of course linked from the website https://www.darkradiant.net Thanks go out to all who helped testing this release! And I'll gladly repeat myself, by thanking all the awesome people who keep using DarkRadiant to create Fan Missions - they are the main reason for me to keep going. Please report any bugs or feature requests here in these forums, following these guidelines: Bugs (including steps for reproduction) can go directly on the tracker. When unsure about a bug/issue, feel free to ask. If you run into a crash, please record a crashdump: Crashdump Instructions Feature requests should be suggested (and possibly discussed) here in these forums before they may be added to the tracker. Changes since 2.14.0 Feature: Realtime shadow mode Feature: Allow way to hide some entities in Create Entity list Feature: MD5 Animation Viewer: show current frame & total frames Feature: MD5 Animation Viewer: jump to frame Feature: DarkRadiant warns about missing .darkradiant file on load Feature: Ability to center 3D camera on selected entity Feature: Cut functionality to complement copy and paste Feature: Save user settings by application version Fixed: Free Rotation not working anymore, can only rotate along 3 axes Fixed: DR crash with combination of mouse buttons pressed Fixed: Git Sync Exception: too many redirects or authentication replays Fixed: Missing brushes when opening alphalabs1 from vanilla Doom 3 PK4s Fixed: Selected Skin not showing in ModelSelector Fixed: Reload Defs takes longer every time Fixed: ForceShadows materials are not casting shadows Fixed: Objective GUI doesn't display properly in some places Fixed: Crash on loading certain maps Fixed: Vertex colours do not show on models in lighting mode Fixed: Entity inspector shows inherited spawnargs of previous selection Fixed: DR overwrite order for defs is different from TDM's Fixed: X/Y and Camera View bindings don't save properly Fixed: Material Preview rendering Fixed: "Replace Selection with exported Model" sets classname to "func_static". Fixed: Map -> Edit Package Info (darkmod.txt)... crashes DarkRadiant Fixed: Rotating a func_static result to random stretch textures Fixed: DR crashes when syncing with remote Git repository Fixed: Switching visibility of Github repo from public to private causes crash Fixed: Dockable window layout doesn't save new floating XY views Fixed: "Choose skin..." button on custom model spawnargs shows skins for main model spawnarg Fixed: Entity inspector considers inherited colors black Fixed: ReloadDefs moves def_attached light crystals to entity origin Fixed: Option to filter skins out of search results in the Choose Model dialogue Fixed: .lin files can't be opened if different case than .map name Fixed: Model chooser radio box selection issue Fixed: Changing multiple lights between omni/projected resets colours to black Improvement: Allow absolute paths for snapshots Improvement: Light diamonds and Speaker radii are transparent Improvement: Unify Declaration Parsers Improvement: Add "Create Particle" to right-click orthoview drop-down menu Improvement: Revisit Interaction Shader to get closer to the TDM looks Improvement: Entity inspector should recognise spawnargs beginning with "sprS_" as def spawnargs Improvement: UI for worldspawn-to-entity conversion Improvement: classname field should always be read-only, to force use of the "Choose entity class" button Coding: Update solution and build dependencies to Visual Studio 2022 The list of changes can be found on the our bugtracker changelog. Have fun mapping!
  6. I will update this list as we go, re-arranging info based on severity - Ongoing privacy concerns The trade-offs between privacy and features is not a simple black-and-white decision, even Windows 8 has an “Advertising ID” that follows you around. Ars Technica revealed that, even with all of the Win10 security settings on Off, Win10 still sends some data to the Micro$oft Mothership. The simple fact is that Microsoft hasn’t told us what data it’s collecting. With the release of Windows 10, Micro$oft have stepped up there 'illegal' data capture of private user data - http://forums.thedarkmod.com/topic/17379-microoft-data-slurp-now-not-just-limited-to-win10/?hl=windows M$ is now via the latest update, monitoring how long your Win10 session's are and how long you use various apps - http://betanews.com/2016/01/04/why-is-microsoft-monitoring-how-long-you-use-windows-10. At release ALL Win10 (home-to-enterprise) users could not disable telemetry, but as of the latest update now enterprise user's only now have that option - http://www.zdnet.com/article/windows-10-telemetry-time-for-level-playing-field/ But it seems some enterprising user has created a tool for home/pro users - http://winaero.com/blog/how-to-disable-telemetry-and-data-collection-in-windows-10/. But the article points out that tere is some telemetry being sent back to M$ in Win7/8 - http://forums.thedarkmod.com/topic/17379-microoft-data-slurp-now-not-just-limited-to-win10/?hl=windows Another renamed service that needs to be disabled - http://www.forbes.com/sites/gordonkelly/2015/11/24/windows-10-automatic-spying-begins-again/ Another example of fresh install, on a PC that wasn't used for 8hrs - http://betanews.com/2016/02/06/windows-10-phones-home-a-lot-even-with-all-reporting-and-telemetry-disabled/ More and more tools are coming out for Win 10 to try and block all or most of the telemetry traffic, here one I have come across - DisableWinTracking Advertising it wasn't in at launch but there are reports of 'recommended' apps appearing in the start menu, WTF! -http://www.digitaltrends.com/computing/windows-10-start-menu-advert/ Stability and Compatibility I tested the retail version, its IMHO its still not stable enough to considered a daily OS. I tested on release and wasn't impressed. I found if I enabled (fairly modest) whitelist outbound blocking on my internet router, Win10's internet responsiveness would fall through the floor. All browsers would takes ages to resolve sites and the OS itself would actually become lumpy/laggy. Broken Video drivers, its so widespread that even a few on here have been affected - http://forums.thedarkmod.com/topic/17665-windows-10-why-you-shouldnt-upgrade/?p=384905 The Graphical user interface M$ white-washing of the interface in Win8 and office 2013 and have refused to learn from user feedback. Forced updates Not being able to control what gets installed on "MY PC", is a massive NO! NO! Patching remains Windows 10’s Achilles’ heel, all Windows 10 Home machines, and Windows 10 Pro machines that aren’t hiding behind an update server (such as WSUS or WUB) will get all patches applied according to Microsoft’s time scale. All three of the first Cumulative Update patches have had problems with reboot cycles. KB3081424 on Aug. 5, KB3081436 on Aug. 12, and KB3081438 on Aug. 14 all crashed a bunch of Windows 10 systems. The installer stops mid-installation, flashes an error message, rolls back, and reboots. Then you guessed it -- the forced installer kicks in and crashes Windows again. Rinse, lather, repeat. Getting out of the mess involves editing the registry. We haven’t yet seen how Micro$oft will recover from a really bad update, the experience to date with the three Cumulative Updates does not instil confidence. We don’t know if Microsoft will start documenting its patches again. We don’t know if much effort will be directed at fixing and improving the Microsoft-supplied Universal apps. Windows 10 installer takes a look at your system and based on the hardware and software it finds, assigns your request to a bucket of similar upgrade requests. The guys running the upgrade system, prioritize your request based on their assessment of how likely your system is to bomb out on an upgrade. Key apps, such as Mail and Edge, STILL aren’t ready yet Some of Windows 10’s key apps simply half baked. Mail has a nasty habit of putting notifications in the upper-left corner and leaving them hanging forever. There’s no combined Inbox, so if you have multiple accounts you have to jump from Inbox to Inbox. And it crashes hard -- for a lot of people. Edge, the new browser, similarly has all sorts of rough "edges". There are no extensions yet, thus no AdBlocker. Changing the search engine is tortuous, moving tabs onto the desktop and back again doesn’t work and you can’t pin tabs. In short use what ever mail/browser you wrere using on previous OS. Not much in the way of Universal apps Don't believe the marketing bollox about all of those wonderful Universal apps in Windows 10, whether it’s on a desktop, notebook, phone, Raspberry Pi, it ain't happening. The Windows Store is still by and large a wasteland, with crap apps galore. Win10’s Tablet Mode broken First, there’s the menu on the left that tucks away the entries on the left side of the Start menu. It collapses fine, but when it’s collapsed it rarely shows any more tiles than when it’s not collapsed. What’s the point, eh? Universal app windows have that pesky taskbar permanently tacked on the bottom, while the window bar at the top auto-hides. Edge, when running full screen, doesn’t support any of the old Metro IE swipe commands. You can’t swipe through running apps. The apps themselves? The irony is M$ Office on the iPad is better than M$ Office on Windows 10. OneDrive regression This concern applies only if you use OneDrive in Windows 8.1, and if you put a lot of stuff in OneDrive. For those of you using OneDrive in Windows 7 (and Windows 8), there’s no change in behavior with Win10. But if you’re accustomed to seeing all of your OneDrive files in Windows 8.1’s File Explorer, you’ll be in for a bit of a shock. Windows 10 makes you choose which OneDrive folders you want to be able to see in File Explorer. Once you’ve made that choice, the other folders aren’t accessible in File Explorer. The only way to see what files you have in OneDrive is by venturing to the OneDrive website. Missing Media Center and DVD player For those people that run Windows Media Center, its gone in Windows 10 PC. Instead Micro$oft wants you to use/buy an Xbox. Ain’t broke, don’t fix it The old adage comes from experience and it’s as applicable now as it ever was. If you’re using Windows 7/8/8.1, and it’s properly patched up and working for you, and you’ve stopped using Internet Explorer, you really have to consider whether it’s worth the effort to upgrade to Windows 10. Carefully consider whether the warning signs listed here. Still to many questions For example, when you upgrade a “genuine” Win7, Win8 or Win8.1 machine to Win10 and run the upgrade in place, Micro$oft records a hardware ID that says, “this machine has valid license” At that point, you can install either Win7 or Win10 on that machine, and your license will be validated. Its believed that the only version of Win10 that you can disable ALL telemetry and fully control Windows update in, is the enterprise version. Smells like Teen Spirit desperation Microsoft Marketing chief Chris Capossela explained that users who choose Windows 7 do so “at your own risk, at your own peril.” It is particularly myopic to rubbish one of your own products that way. Put simply Capossela is a complete cock, Windows 7 is no less secure than Windows 10 (it will be supported until 2020 and Windows 8.1 2023) and is no less compatible with new hardware and software. Also at the moment Win7 has a bigger market share, so easier work for developers. Micro$oft has bad been caught forcing the upgrade on some users, http://www.theregister.co.uk/2015/10/15/pushy_windows_10/ and http://www.fudzilla.com/news/39479-microsoft-raises-the-upgrade-pressure As this is a very bad and its only getting worse, another link to the forced upgrade/update issue - http://forums.thedarkmod.com/topic/17665-windows-10-why-you-shouldnt-upgrade/?p=385115 Nagware being rolled out the business machine - http://www.theregister.co.uk/2016/01/14/get_windows_10_business_pcs/ Now blocking support for the latest CPU in windows 7/8 - http://www.techpowerup.com/219316/no-enterprise-support-for-older-windows-versions-on-the-latest-processors-microsoft.html More marketing desperation Malware - KB3035583 http://news.softpedia.com/news/microsoft-updates-infamous-get-windows-10-patch-kb3035583-502117.shtml Compatibility issues If you have any old games that use really old forms of DRM or SafeDISC your fresh out of luck - http://www.geek.com/games/windows-10-doesnt-run-games-with-securom-and-safedisc-drm-1631383/ Various apps and games (even The Darkmod) has had issue's running on Windows 10, see - http://forums.thedarkmod.com/topic/17310-windows-10-support-thread/?hl=win10 and http://forums.thedarkmod.com/topic/17551-gamma-broken-in-windows-10/?hl=win10&do=findComment&comment=381800 Upgrade NagwareMicrosoft is still coming up with way to try and force users to upgrade from 7/8/8.1 - if you like me want to block 7 prevent this crap checkout GWX control panel or Never10 16. M$ deliberatly blocking the installation of some applications http://news.softpedia.com/news/Microsoft-Blocks-Classic-Shell-in-Windows-10-Build-9879-465429.shtml 17. Windows 10 installing UNWANTED Windows Store apps without user consent https://www.ghacks.net/2018/07/02/windows-10-installing-unwanted-store-apps/
  7. DarkRadiant 3.1.0 is ready for download. What's new: The Texture Tool got its Free Scale operator now, allowing you to fit the texture with the mouse instead of having to type in the percentages. A lot of work went into the Declaration handling (EntityDef, Skins, Materials, Particles, etc.), which is now much more robust and more conformant to how the game is doing things (at least until TDM 2.10). The Material Editor got a plethora of issues resolved Improved the Model Export dialog and options For more things that have changed or fixed, see the list below. Windows and Mac Downloads are available on Github: https://github.com/codereader/DarkRadiant/releases/tag/3.1.0 and of course linked from the website https://www.darkradiant.net Thanks go out to all who helped testing this release! And I'll gladly repeat myself, by thanking all the awesome people who keep using DarkRadiant to create Fan Missions - they are the main reason for me to keep going. Please report any bugs or feature requests here in these forums, following these guidelines: Bugs (including steps for reproduction) can go directly on the tracker. When unsure about a bug/issue, feel free to ask. If you run into a crash, please record a crashdump: Crashdump Instructions Feature requests should be suggested (and possibly discussed) here in these forums before they may be added to the tracker. Changes since 3.0.0 Feature: DR doesn't consider wildcards in skins Feature: Reload Images eature: Texture Tool free scale Feature: Add "Show Definition" to all ResourceTreeView instances Fixed: "Reload Defs" doesn't remove entities that have been commented out Fixed: 'Reload Sounds' doesn't load new FM sound shader definitions Fixed: Reload Defs is not sufficient for reloading modelDefs Fixed: Models are reset to origin after reloadDecls Fixed: Skin Chooser doesn't preselect non-matching skins Fixed: Moving speakers deletes distance spawnargs if they're the same as in shader Fixed: Unable to select func_emitter with particle attached Fixed: Particle Editor Preview lacks vertex colours in lighting mode Fixed: Particle effects still visible when hidden via layers or filter Fixed: Entities referring to modelDefs should use the "idle" pose where possible Fixed: DR does not parse materials in def files Fixed: Modifier Hint Popup can crash when hitting Ctrl/Alt/Shift keys during shutdown Fixed: Insignificant digits displayed in Surface Inspector shift/scale/rotate values Improvement: Skin Chooser: show in which .skin file the skin is defined Improvement: Declaration Block Parsing overhauled Improvement: Python Interface for IDeclarationManagerImprovement: leave player start entity selected after placemen Improvement: Let Map Info show materials used by models Improvement: Renaming Declarations causes problems when saving it later Improvement: Light Texture Preview should display editor images if present Improvement: Remove comments about particle generator in .prt files Material Editor: New Material is locked if the default unnamed name is already in use Material Editor: allow to delete materials Material Editor: image browser's "cancel" button rewrites the material source text Material Editor: does not save manual edits to source text Material Editor: should show .mtr the material is defined in Material Editor: after "Reload Images", image previews are only updated when selecting a different material Material Editor: suboptimal preview for cubeMap materials Material Editor: preview object doesn't have smooth shading Material Editor: preview doesn't take "scale" into account in Textured Mode Material Editor: blend add stages are rendered separately in preview in lighting mode Material Editor: test frob highlight button not working Material Editor: doesn't remember settings from previous session Material Editor: image thumbnails use "scale" keyword from previously selected material Material Editor: frob highlight stage not updated correctly when changing diffusemap Material Editor: using Escape to close ignores unsaved changes Material Editor: Global Settings should be preselected Material Editor: some declaration text is lost while editing#6047: Material Editor: clicking "cancel" when selecting a light classname clears the classname field Material Editor: new materials always sorted last Material Editor: filter for image browser Material Editor: can't unlock editing on materials in "Other Materials" folder Material Editor: tries to save materials in DarkRadiant folder if no FM is installed Material Editor: allow to change preview backgroun Material Editor: preview renders shadows for noshadows materials 'Export selected as Collision Model' doesn't auto-create path folder and throws error Model exporter: manually enter export origin Model exporter: export origin choice should use a radio button Model exporter: only 1 entity's model is reloaded Model exporter: "Use entity origin as export origin" still uses map origin Model exporter: rename "Center Objects around Origin" The list of changes can be found on the our bugtracker changelog. Have fun mapping!
  8. Here's the DR 2.14.0pre2 build for every interested mapper to test. This release focused on DarkRadiant's texturing abilities, the Texture Tool and some of the Surface Inspector algorithms have been completely rewritten. A new model importer UI has been added with the ability to convert FBX models into a format compatible to the game (it can also convert LWO, ASE and OBJ models). The EntityInspector can now deal with more than one selected entities, showing the shared key values in the list. Copy/Paste Textures across angled faces: Texture Tool Rotate Tool (use "R" hotkey to switch) Surface Inspector Harmonise Scale / Linked Scaling Surface Inspector Normalise EntityInspector Multi-Selection Support For more things that have changed or fixed, see the list below. Download Windows Portable x64: https://drive.google.com/file/d/1-wqcqnlz8KOYpts-ap8x313yVaiQm87l/view?usp=sharing Download Windows Installer x64: https://drive.google.com/file/d/1-pSE-517B7Y-T3-VonNv4zLzUMgr-fXt/view?usp=sharing Linux folks need to compile this stuff from source, instructions for various distributions are on the wiki. If you happen to run into a crash, please record a crashdump: How to record a crashdump Changes since 2.13.0 can be seen on the Bugtracker changelog, here's the summary: #5746: Feature: Texture Tool Improvements #5776: Feature: Texture Tool: Add Manipulation Panel to shift/scale/rotate selection #5613: Feature: Show shared keyvalues when multiple entities are selected #5738: Feature: Texture Browser Filter: match multiple words (using 'AND' logic) #5728: Feature: Skin Chooser shows materials of the model #5774: Feature: Surface Inspector: Add buttons to harmonise Horizontal and Vertical scale values #5771: Feature: Improved pasting textures to angled faces sharing an edge #5753: Feature: XY view zoom is centered at cursor #5748: Feature: Texture Tool: Constrain operations to axes by holding down Shift #5128: Feature: Texture Tools: rotate function #5731: Feature: Texture Tool: UI contrast #5721: Feature: Model Conversion UI #5722: Feature: Add FBX model importer #5712: Feature: add IQM format support into lib/picomodel #5705: Improvement: "Replace Selection with exported Model" preserves spawnargs #5659: Improvement: automatically reload exported models #5745: Improvement: Search function: don't start searching while still typing #5791: Improvement: MediaBrowser toolbar: clear filter text when texture is selected through MMB or Texture Browser #5788: Improvement: Merge "Create player start" and "Move player start" options #5785: Improvement: Patch Texture Rotation should take aspect ratio into account #5733: Improvement: Texture Tool: use aspect ratio of material #5740: Improvement: Step-rotating textures through the Surface Inspector should be using the center as pivot #5775: Improvement: Surface Inspector: Option to change horizontal and vertical scale values proportionally #5633: Improvement: Apply textures to surfaces using "normalized" scaling. #5547: Improvement: Normalise button brings texture coordinates closer to 0,0 #2272: Improvement: Prevent Texture Tool "face jump" on rescaling textures #5735: Improvement: Move modifier hints out of the status bar #5767: Improvement: Flip Texture: Prevent huge face UV coordinate translations #5752: Improvement: Double click on list elements should auto-close dialogs #5749: Improvement: Texture Tool: Select items by clicking the UV space they cover #5750: Improvement: Texture Tool: Grid lines are getting too dense when zooming out a lot #5732: Improvement: Texture Tool: intercept keystrokes for grid resizing & snap to grid #5734: Tweak: Surface Inspector vertical shift / vertical scale arrows #5706: Tweak: Surface Inspector's minimum width is too large #5741: Improvement: Model Exporter: warn if Output Format and extension in File Path don't match #5711: Improvement: Change Quake3 map exporter to write "legacy" brush syntax #5710: Fixed: Q3 Legacy BrushDef parser sometime produce some wrong texture rotation #5687: Fixed: "Replace Selection with exported Model" assigns result to Default layer #5408: Fixed: All scene graphs connect to the same undo system, causing interference #5790: Fixed: Remove Floating Layout #5783: Fixed: EntityInspector allows to set an entity's name to an empty value #5723: Fixed: modelDefs folder starts expanded after changing selection #5736: Fixed: Particle Editor: wireframe does not render #4584: Fixed: Drag-select while in texture tool window gets stuck. #5770: Fixed: Some brushes change shape or disappear when rotated or duplicated #5747: Fixed: Texture Tool: drag operation doesn't capture the mouse #5754: Fixed: Ctrl-S does not work when focus is on inputs #5729: Fixed: Autosave filename unhelpfully overwrites 'save copy as' filename #5725: Fixed: Merge Maps: can't hide changed entities/primitives #5708: Fixed: Merge Maps: can't center orthoview/camera on changed entities #5709: Fixed: Merge Maps UI remains if DR is closed while a merge is in progress #5707: Fixed: Merge Maps: "Details" text doesn't use full width of window #5704: Fixed: Brushes colour schemes not saving #5702: Fixed: Fit Texture fields do not allow values below 1.0 #5713: Fixed: PatchDefExporter: do not write trailing white space after shader name #5717: Fixed: LWO2 Model Exporter doesn't write vertex colours #5588: Coding: Separate UI-related and core module interface headers #5780: Coding: Remove IDialogManager references from Map module #5778: Coding: Solution / Build Dependencies Update Changes since 2.14.0pre1 #5810: Fixed: Objective components not correctly renumbered after removing a component #5801: Fixed: Applying a skin to a model entity no longer works under 2.14pre1 #5813: Fixed: Spawnarg types and tooltips not reliably inherited in entityDefs #5814: Feature: Spawnarg type icon not shown for inherited properties #5808: Fixed: Crash when saving map or prefab without a file extension #5807: Fixed: Texture Tool crashes when creating a new brush #5797: Fixed: "Texture tool" grid cannot decrease under 1 #5799: Fixed: Texture Tool: dragged vertices snap to grid even though it's switched off #5800: Fixed: Sound chooser not pre-selecting the inherited value of snd_* keys of an entity #5794: Fixed: User Guide (Local) doesn't work #5792: XY View zooming behaviour improved (if not fixed) Refresh icons for axis flip buttons Separate SurfaceInspector scale rows from other property rows Restore GL_LINEAR_MIPMAP_LINEAR texture filtering Thanks for testing, as always!
    1. nbohr1more

      nbohr1more

      I've got a little drool thing going on now... Sperry is one of those authors.

    2. Bikerdude

      Bikerdude

      Exactly..!! He is the one who inspired the Like's of Melan and Skacky!

  9. You can try my alternative footstep sounds package which addressed the things you described together with a lot of other footstep sounds both for player and AI if you want to. https://forums.thedarkmod.com/index.php?/topic/17631-new-footstep-sounds/
  10. Mods can this moved again? @Acolytesix- can you make sure you post in the beta thread instead of this one please (this one is public, the beta thread is only for logged-in forum members): https://forums.thedarkmod.com/index.php?/topic/21822-beta-testing-high-expectations/
  11. sure - I would only ask that you follow the thread to make sure you don't report stuff that has already been mentioned: https://forums.thedarkmod.com/index.php?/topic/21822-beta-testing-high-expectations/
  12. heh i was thinking the same though it might just have been a glitch when writing the names are pretty similar. But for correctness it is called the dark engine and the newer version that allows us to run these beauties on win10/11 is called newdark. newdark is kinda interresting as it just suddenly popped up on a french forum some time ago by an anonymous developer with the alias le corbeau who allegedly got his hands on the original source code and started updating it for modern OS. this was the original thread i believe -> https://www.ttlg.com/forums/showthread.php?t=140085 bikerdude was on that forum to when the patch hit i noticed hehe.
  13. The spoiler tags aren't for you, it's for the rest of us reading this thread so WE don't get spoiled. Thanks for spoiling the frobbable book on a shelf for the rest of us. EDIT: I'll be unsubscribing to this thread to avoid further spoilers. Maybe I'll check back after I've finished the mission Amadeus
  14. Google mobile is on the forums online user lists (in addition to google)... never seen that before

    1. nbohr1more

      nbohr1more

      He's a pretty cool guy. You ask him to find stuff and he'll usually turn up the goods. A little nosy though...

  15. DarkRadiant 2.9.1 is ready for download. Maintenance release available: DarkRadiant 2.9.1 fixes a freeze issue that has slipped into the recent 2.9.0 release. The previous release of DR 2.9.0 includes a large change to DarkRadiant's module architecture, separating UI code from the actual algorithms almost everywhere. Aside from that, most efforts went into bug fixing and stabilisation - with the occasional convenience feature here and there. TDM mappers will like the first incarnation of the TDM Game Connection plugin (usable in TDM 2.09+). It's recommended to prefer this version over any previous release. Windows and Mac Downloads are available on github: https://github.com/codereader/DarkRadiant/releases/tag/2.9.1 and of course linked from the website https://www.darkradiant.net Thanks go out to all who helped testing this release! Please report any bugs or feature requests here in these forums, following these guidelines: Bugs (including steps for reproduction) can go directly on the tracker. When unsure about a bug/issue, feel free to ask. If you run into a crash, please record a crashdump: Crashdump Instructions Feature requests should be suggested (and possibly discussed) here in these forums before they may be added to the tracker. Changes since 2.9.0 Fixed: DR freezes when saving from the "Exit DarkRadiant" dialogue Fixed: Crash when "Load last map at startup" is activated Changes since 2.8.0 Feature: TDM Game Connection Plugin Feature: Add search function in Skin Chooser Feature: Highlight a model in orthoview and its selected in 'map info' inspector Feature: Display Estimated Duration of Sound Clip Feature: Display which file an entity or soundshader is defined in Feature: Add a 'Reload Sounds' options to the menu Feature: Add a way to teleport to coordinates (via Console Command or Python) Feature: Exit search field in child window by pressing escape Feature: Improve usability of class selection in Difficulty editor Feature: Add `monster_player_clip_wood` to list of filtered clip textures Fixed: Skin listing issues in Skin Chooser Fixed: Moving a clipper point always sets position on one axis back to 0 Fixed: "Model Scaler" doesn't handle model duplication correctly (or perhaps consistently) Fixed: Clipper cursor persists when switching out of clipper mode Fixed: Crash if pressing backspace while drawing a brush Fixed: Console warning in Linux when loading libradiantcore.so: undefined symbol: RegisterModule Fixed: Change CSG Merge such that only brushes sharing the same parent entity get merged Fixed: Crash when using CSG Merge on brushes that are entities Fixed: 'Delete property' is greyed out when multiple properties are selected Fixed: Difficulty editor doesn't show classnames when typing instead of selecting them from the dropdown list Fixed: Particle editor creates .prt files incorrectly Fixed: Crash in PrefabChooser dialog when using type-search while a prefab is loaded Fixed: Escaped EOLN in entity spawnarg is turned into real EOLN Fixed: DarkRadiant will not show DDS textures that are stored uncompressed (non-DXT) Fixed: Linux config files should go under ".config" Fixed: Render mode icons are difficult to distinguish in certain environments Fixed: Texture Tool / UV Tool grid size Fixed: DR lockup/freeze while cleaning up brushes using subtract/cutting tools. Fixed: Fit Texture does not work if either Horiz. or Vert. scale are set to 0 Fixed: DR not always remembering window size and position between sessions Fixed: Model browser renders 3D previews for past models, overlaps current selection Fixed: Conversation Editor won't add new actors, entity names are seen as null (Linux) Fixed: On/off Selection issue with layers window Fixed: Export patches: .lwo loses smooth shading Fixed: Reported Polycount for LWO models is one too high Coding: Unit testing infrastructure The list of changes can be found on the our bugtracker changelog. Have fun mapping!
  16. Personally I think this is the worst idea ever. The Reason forums has LOADS of info and knowledge, built up through years and years. I'm really sad to see it go away, and I can't understand why they've made this decision. https://www.propellerheads.se/forum/showthread.php?p=1579099#poststop
  17. Cleaning Up the Neighborhood by some1stoleit, bikerdude Brief Description: A small-medium sized assassination mission, taking place in a bar and casino environment with streets surrounding the bar. Story: Crime is out of control in my neighbourhood, when thugs attacked my wife I decided I can no longer stand by idly. Unable to rely on the corruptible city watch and the aloof Builders, I must take matters into my own hands. My first target is a bar called the Scoundrel’s Rest which is not far from my home. It’s owned by a man named Godfrey and considered neutral ground to the various criminal factions inhabiting the city district. There is no doubt its presence attracts criminals towards my neighbourhood, contributing to the infestation of crime. Infiltrating the bar not only creates the opportunity to kill Godfrey and shut it down for good but also allows me to find information about the rest of criminal groups that inhabit my neighbourhood. I gave my thieving days when I met my wife, but for her sake I must take up the profession once more and prowl in the shadows again. Notes/Tips: Your lock picks are noticeably old, so you can’t rely on them to get you past every door. Examine the environment and keep an eye out for keys on pockets.If you see a pipe outside, chances are you can climb up it.On Rusty and Practiced difficulty settings there's a map available for the bar’s ground level and the street surrounding it.It should be possible to ghost the every area in the mission. A small amount of loot however may be difficult or impossible to acquire without knockouts.There are a few hidden optional objectives you can discover. Screenshots Download Mirrors: https://www.dropbox.com/s/rbiashq1c1k56ns/Cleaning%20Up%20the%20Neighbourhood%20v1.0.zip?dl=0 https://mega.nz/#!bMtgiSra!Y1KXGovfYfdtG1xxRkmPYndLxgq7wMNVr8oENnS2Qxg FAQ: I dislike when I get stuck on an FM and have to leave the game to scroll through forums to find out what to do. I think the mission should be straightforward enough to beat without answers, but I will provide a FAQ if it’s needed. Just be sure to give a good try working it out yourself before reading this. Thanks: I’ve found the TDM community very welcoming and helpful as a new member and would like to thank several people. Bikerdude, for allowing me to collobarate with him and showing me a different way to build maps from scratch in Dark Radiant, as well as many other mapping techniques.Resources:Springheel, for his Modules and his retroactive permission to use New Job street segments.Amadeus, for doing some proofreading of the briefing and readables.Obsttorte, for his objective checking script used for one of the optional objectives.Rsoul, for creating new internal version of architecture models.Beta Testers:Amadeus, Cambridge Spy, Abusimplea, Shadow, Boiler’s_hiss, nbohr1more, Springheel, JudithPeople who helped Answer my Questions:Destined, JackFarmerSpecial thanks to Sotha and Springheel whose video tutorial series give me the guidance and confidence to start using Dark Radiant.I apologise if I missed anyone, if I missed you please do contact me and I’ll credit you appropriately. About the Development: Initially this was a solo developed mission made by myself, upon some beta testing I agreed to make the mission collaboration with Bikerdude, with the intention to learn good mapping practices from the collaboration. The mission was redesigning using the same layout as the original but using Springheel’s modules instead of my very simple brushwork, and expanded in scope to include a more detailed street, a canal, a sewer and a rooftop segments. Bikerdude’s use of springheel modules and custom skins is mostly responsible for the beautiful visuals, with my contribution being the layout of areas and the writing. Known Issues: None at the moment.
  18. Welcome to the New Mappers Workshop! This is a communal workshop for new mappers who have never made a TDM mission before. Each week or two I will make a tutorial video and help to guide everyone through the process of creating a small, complete mission. I'm hoping the participants will feel free to ask questions, no matter how small--we're all here to learn from and encourage each other. Since I expect this thread to get fairly busy, I'm going to be heavy-handed about removing off-topic content. ====================================================================================================================================================================== Lessons often include links or other written instructions; direct links to the lessons are collected below: Lesson 1: Planning http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=407999 Lesson 2: Visportals http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=408253 Lesson 3: Your First Room http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=408484 Lesson 4: Decorating Your Rooms http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=408785 Lesson 5: Connecting Your Rooms http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=409215 Lesson 6: Outdoor "Rooms" http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=409322 Lesson 7: Creating Doors http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=409547 Lesson 8: Functional Props (ie, entities) http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=409731 Lesson 9: Immersive Details (sound/particles) http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=410258 Lesson 10: Advanced Brushwork (ladders/water) http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=410667 Lesson 11: AI http://forums.thedarkmod.com/topic/18945-tdm-new-mappers-workshop/?p=411192
  19. Interesting, although I'm not sure what to make of that. One of my favorite games (The Chronicles of Riddick Assault on Dark Athena) was published by Atari, and, they don't even seem to care to keep the activation servers running much. Or remove/change the copy protection, which doesn't work at all on Windows 11. I really hope that Nightdive delivers at the end of May... I'm not one of the shit storm crowd (it's absolutely horrible on the Steam forums...), but, 7 years of development is a long time, and delaying the release obviously has become a bit of a habit, to say the least.
  20. When I tried your .exe, I got this: https://forums.thedarkmod.com/index.php?/topic/21477-water-effects-not-rendered-through-warp-glass/&do=findComment&comment=475732 You also suggested trying the 'latest development build'. I asked if that can be obtained using tdm_installer, and you said 'yes'. That's what I reported here: https://forums.thedarkmod.com/index.php?/topic/21477-water-effects-not-rendered-through-warp-glass/&do=findComment&comment=475856 So - I am probably doing something wrong but not sure what
×
×
  • Create New...