View Issue Details

IDProjectCategoryView StatusLast Update
0006317The Dark ModFeature proposalpublic03.12.2023 22:06
ReporterGeep Assigned To 
PrioritynormalSeveritynormalReproducibilityhave not tried
Status newResolutionopen 
Product VersionTDM 2.11 
Summary0006317: New Feature - Tell gui the subtitle verbosity type
DescriptionFor 2.12 dev, it would be useful to explore ways to visually-distinguish "story" from "speech" subtitles.

To accomplish this, associated with each subtitle slot, a float variable should be exposed, whose integer value is set by the engine to indicate whether the current subtitle is of type "verbosity story", "verbosity speech", or "verbosity effect". With the goal to read (but not set) it in tdm_subtitles_common.gui
Additional InformationIdea introduced in https://forums.thedarkmod.com/index.php?/topic/21741-subtitles-possibilities-beyond-211/&do=findComment&comment=487296
TagsNo tags attached.

Activities

Geep

Geep

01.12.2023 19:19

reporter   ~0016198

I'm revising this request, replacing the enum with a boolean, and focused on a particular use case. See the attached file "Optional Tighter Backing Field for Barks.txt"
stgatilov

stgatilov

02.12.2023 12:29

administrator   ~0016199

There is already GUI variable "subtitleN_verbosity", where N is the index of subtitle.
Could you please check if it works?
Geep

Geep

03.12.2023 17:37

reporter   ~0016202

Great! I know we talked about that, but wasn't aware it had actually shipped. I assume the values are:
0 = story
1 = speech
2 = effects
Inside the .gui, if I'm lucky, this could be part of an expression to initialize "rect", Otherwise, I'll do it with event blocks.
Geep

Geep

03.12.2023 19:43

reporter   ~0016203

I see that the enumeration is instead:
1 = story
2 = speech
3 = (presumably) effect

I was not able to test "effect", even using the CVar cv_tdm_subtitles with value 3, meaning "show everything"; latter did nothing.

Making progress on script
Geep

Geep

03.12.2023 22:06

reporter   ~0016204

OK, the .gui script is working for "story" and "speech" and presumably (but untestable) "effect". It automatically provides a narrower backing filed for "speech/effect" captions than for "story". This can be extended to make that difference optional, but requires an extra CVar, as described in the above "Optional Tighter Backing Field for Barks.txt". Compared to the script in that document...

1) SUBTITLE_MARGIN_DIFF is now defined as:

// SUBTITLE_MARGIN_DIFF's value will be 0 with a "story" subtitle or [planned] if Cvar subtitle_narrowfield_nonstory is false (0); otherwise, value is 100.
// 100 is the difference between horizontal field margin for nonstory (200) and story (100):
#define SUBTITLE_VERBOSITY SUBTITLES_CONCAT3("gui::subtitle", SUBTITLE_DIGIT, "_verbosity")
#define SUBTITLE_MARGIN_DIFF ((SUBTITLE_VERBOSITY) == 1 ? 0 : 100)
// To incorporate new CVar:
// #define SUBTITLE_MARGIN_DIFF "gui::subtitle_narrowfield_nonstory" * ((SUBTITLE_VERBOSITY) == 1 ? 0 : 100)

2) The calculation of the rect size adjustment was incorrect, and needed to be doubled to (2 * SUBTITLE_MARGIN_DIFF)

The attached file has those changes.

BTW, was your SUBTITLES_TEXT_SCALE value of 0.24 instead of 0.25 just an oversight, or on purpose to provide more headroom for the x/y sound spatialization ring?
tdm_subtitles_message.gui (3,568 bytes)   

Issue History

Date Modified Username Field Change
07.09.2023 18:21 Geep New Issue
01.12.2023 19:19 Geep Note Added: 0016198
01.12.2023 19:19 Geep File Added: Optional Tighter Backing Field for Barks.txt
02.12.2023 12:29 stgatilov Note Added: 0016199
03.12.2023 17:37 Geep Note Added: 0016202
03.12.2023 19:43 Geep Note Added: 0016203
03.12.2023 22:06 Geep Note Added: 0016204
03.12.2023 22:06 Geep File Added: tdm_subtitles_message.gui