本帖最后由 shane007 于 2023-8-12 13:57 编辑 ; r% k- \: h0 o) ?
' q: H4 a. _! s. c; E, i这个游戏原本是没有字幕的,但是在Scummvm论坛上发现了一个帖子,
! M5 a: Z, r' P3 ], I: c讨论的内容是关于在原本没有字幕的游戏上加上字幕。(最初的缘由,是为了帮助一位失聪的朋友)! I( b f2 C4 d3 w5 `7 |
https://forums.scummvm.org/viewtopic.php?t=7168- M/ X) ]9 k: W: T
[Scummvm-devel] Displaying subtitles in voice-only games (narkive.com)7 j. c, O5 Z. S9 B: v- c S) e
/ _5 @2 P& m @2 {/ x3 j
前段时间第七访客出了25周年纪念版(The 7th Guest 25th Anniversary Edition。
' y. y3 J0 W+ Q5 v: p在这个版本中,游戏的视频是有字幕的,因此把这个视频的字幕用到Scummvm中就成为了可能。5 B2 D6 Z% n* l% h7 c5 `* `
* \3 [' {2 h. ?+ ^: z s0 I" g我查看了一下最新版本的Scummvm的代码,发现老外已经加入了一部分代码。
9 I8 V; w, K" d! R- v+ r/ G在此基础上,汉化是大有希望的。此种汉化方法,也是前所未有的,如果真的实现了将会有重要意义。/ T* E. h$ _% k) T: I( s( r
4 ]5 R$ P5 ~% o6 J) C类似游戏还有- · Groovie. V+ }* h6 l: ~( z
- - The 7th Guest2 U+ s( b' c' F+ I# ?
- - The 11th Hour
1 a" N) L2 p" j0 w+ m
) F2 x4 j( [& ^" p! ?1 i9 w8 G- · MADE
8 I, b; G: w' b* @9 J - - Return to Zork (descriptions are text only, while spoken dialogs lack4 u, A. v0 K2 ]* g* a, X
- any text)
C4 {% \7 Z! Y" l( s% Q - $ `( I4 {0 I/ X1 b
- · SCI 1
) t" R4 \- m. s, u- T4 j# e6 g - - King's Quest V (CD Version). In this case, just enabling voice and text
4 c; h5 D! @8 v0 W% D - simultanously would allow a 3rd party to create a set of MSG files
4 D+ N9 Y* e3 }4 y/ w. r7 P - containing the voice transcription/translation, as it happened with Gabriel/ h$ @0 m2 W$ S2 P% b8 Y' l/ @
- Knight II.
& W& s( d- n8 U9 w) e7 V
" C9 F' o$ Q9 O; I; s0 l' `5 q- ! z7 F4 }/ p- Z1 I: I( O6 C- q
- Future engines:0 f1 [' H1 q/ [7 Z6 D" I' a3 h: C
# f+ q0 p, @* A$ W1 K- · SCI 219 j. f- y3 J' Y, D& V
- - Gabriel Knight II: The Beast Within (Already a fan patch available in
8 R& V& S; K' G* B4 _ - order to enable the text display feature)
' O. W$ H8 t8 I - - Phantasmagoria
# W' F7 d' ?9 I1 U8 s) @ - - Rama
/ L; m z5 }8 t7 o' d, L, T - - Shivers: p1 z0 ]: ?; g" |# w5 ], Z
- - Phantasmagoria II: A Puzzle Of Flesh
( y) p9 ~6 Y+ X+ K3 ~# I - 6 V& A. w+ P: L/ F% d
- · SCI 3
) k1 D1 c2 x9 L- W% H4 ` - - Lighthouse: The Dark Being% T( E. n" ^( J5 a# | m) j" c0 s
- ! ^& z7 r k/ S- v* K9 o( y/ f! v. M' ~
- · M4/MADS2 r( J0 J/ {* |
- - Orion Burger
. G( h7 u" p% Q" O% _. i# d - , V$ u( V1 j0 T; C. y
- · Mohawk
h. g$ f% W# I. j" C9 n/ @3 \4 g - - Myst
1 ^2 j5 s) c% m! j+ I4 V! h - - Riven: The Sequel to Myst
复制代码
! v9 b. X r1 y8 D+ \, a9 Q5 F% O# o7 X9 a/ W- }. Q9 J
" {8 h% f. e% z6 R
( ]+ s S3 X: Y$ M5 g/ y' T& a+ d相关代码如下
2 p8 @) v# T; J/ B& u' u- bool VideoPlayer::playFrame() {
; L8 Y/ \7 X4 t/ V. l7 ~' c - bool end = true;( t) {" w( Q7 p ]
- " Q. X2 J" b6 A% @4 u$ K1 q
- // Process the next frame while the file is open
) `' L! D0 R% Z) y1 |5 H - if (_file) {7 p2 {) n! X5 s0 k. R7 X5 z
- end = playFrameInternal();
$ B: Q0 P7 R# [8 x$ S
! x8 F: U, G: n) N- _subtitles.drawSubtitle(_lastFrameTime - _startTime);
; H$ N7 A7 d! Q1 C - }
复制代码- bool Subtitles::drawSubtitle(uint32 timestamp, bool force) {
% X: l) M. K$ s3 n; ~5 Q - Common::String subtitle;9 k; d) I+ I. I
- if (_loaded) {* ^- V1 `; p8 K2 `% _8 Y" x' G3 f
- subtitle = _srtParser.getSubtitle(timestamp);( \# z; O- ?, O" H' n V/ ?3 ^
- } else if (_subtitleDev) {- l/ S9 `* L8 k$ Q- Y* @$ u# @
- subtitle = _fname;4 s: N- Z, E8 r$ _& }7 X( ^
- uint32 hours, mins, secs, msecs;
- M" z, m7 s- T3 U# J - secs = timestamp / 1000;* b3 G; f. z t. }: }3 [3 J
- hours = secs / 3600;2 ^8 R9 H, I$ G0 ^8 O$ I5 e
- mins = (secs / 60) % 60;
+ r/ ?; O7 _; K - secs %= 60;
; y6 l6 h! I% A- ~# {, P# x) e7 N - msecs = timestamp % 1000;
4 w. B: l: K: o5 u8 F - subtitle += " " + Common::String::format("%02u:%02u:%02u,%03u", hours, mins, secs, msecs);4 _; E1 _8 |) Q6 q# \
- } else {9 W3 c+ x0 E4 |" Q: }1 \
- return false;
6 k( B; j% M9 v: v+ d+ L - }4 g$ t8 G6 j1 F5 L2 \2 ^- i
" ~2 }: K* a2 q X! P( G- k- int16 width = g_system->getOverlayWidth(), g3 T; P, D7 T0 ?- Q: h6 x. z
- height = g_system->getOverlayHeight();
) ~$ o% U$ r/ @, f; N6 D8 M
' C2 G7 `* K; T! P% d) B- if (width != _lastOverlayWidth ||
; v" W4 l; J/ A' s - height != _lastOverlayHeight) {4 j1 R: t% ?% t: Y7 v1 @0 O' ]
- _lastOverlayWidth = width;
1 N1 q* U0 @4 Q4 c8 W/ y* S' l - _lastOverlayHeight = height;
t" Y. g7 V6 i* J- T
. A+ H6 [* J( [" {3 {/ Y) m3 e- // Recalculate the real bounding box to use
; D9 J& Z, J. q - _realBBox = _requestedBBox;
1 t! Y% H6 U/ A) z' [# U; x9 P* D
' }; r8 ^ K9 D. S7 ?! A- if (_realBBox.bottom > height) {
8 L6 r; Y3 W/ r8 J! h4 e - // First try to move the bounding box
, }; _1 X& G, g* l2 k - _realBBox.top -= _realBBox.bottom - height;$ ~5 P; d& ~% y% o% F6 t
- _realBBox.bottom = height;
9 d) j C7 \( [; h" X4 f - }. g; ~9 I* h3 b& r+ s4 ?# |
- if (_realBBox.top < 0) {
1 L! z* c) \# M; p$ A8 p6 w4 Y - // Not enough space6 F+ R( o4 F1 O0 H. T, s; x7 V
- _realBBox.top = 0;) L! J p2 |7 s. S0 L8 U' f
- }
4 S& a& v3 F9 T/ P" Y
5 |1 T$ U2 r, Z, Y% z! w4 m0 w- if (_realBBox.right > width) {
# L4 Q; y6 L6 z" T, h0 B0 n2 Z3 y - // First try to move the bounding box
, t, g, P, t. U& `* G - _realBBox.left -= _realBBox.right - width;, {8 e1 |) {% z' E4 p" Z* p
- _realBBox.right = width;
5 E* a+ Z* P$ t: H! g( o) i" L. g - } R3 Z0 Z5 ~* ^9 u+ u% ?9 y' u! [& S
- if (_realBBox.left < 0) {
, S. V3 C. K3 N+ w - // Not enough space
$ T6 Z. w9 b- M" U8 _- j- b) Z3 l - _realBBox.left = 0; E; s4 l! W; z& ^* q! ~
- }# ~/ j( T+ A; @( @" |
- " q Z g; T* y1 r& I! l) c
- force = true;
1 y6 {2 Q8 H8 J A& L4 U4 o - }
# m4 I4 m, s/ c! S
0 e; Y; Z; M2 z2 S; t) n5 ~' W3 r- if (!force && _overlayHasAlpha && subtitle == _subtitle)+ z( ]$ Y8 u& f7 i S6 V
- return false;
; h2 e5 ~/ m+ U1 R, M* y- u - 2 \- |. W, X* Y
- if (force || subtitle != _subtitle) {# ?0 j* h: k7 S
- debug(1, "%d: %s", timestamp, subtitle.c_str());
9 z9 Q! l' J" I7 q7 b: v* s
$ r2 q$ @6 x: Q) z. D- _subtitle = subtitle; U' q" r' s. p3 }2 f* d' Z8 W
- renderSubtitle();
* @& e8 c2 Q" o$ T - }
4 P: i6 S; ?: _, N
% v- p! R, E( ^( A- V' S3 y0 i) d" Z- if (_overlayHasAlpha) {
5 K( P$ ?! X$ J2 Y4 |- z- Q - // When we have alpha, draw the whole surface without thinking it more
4 s( d+ N& L P/ e3 W ~9 }( t - g_system->copyRectToOverlay(_surface->getPixels(), _surface->pitch, _realBBox.left, _realBBox.top, _realBBox.width(), _realBBox.height());
& {5 Y: v) p' G$ _+ x4 s8 W - } else {
I; D2 ~* S& v4 m - // When overlay doesn't have alpha, showing it hides the underlying game screen
+ f7 Z9 ~2 ^" u }- k0 F/ R5 D - // We force a copy of the game screen to the overlay by clearing it
0 U* ?0 _* }* Q1 d& f - // We then draw the smallest possible surface to minimize black rectangle behind text
8 j. ~! Z; j# j0 s+ ? - g_system->clearOverlay();. ]9 J$ i) O/ L' {& I
- g_system->copyRectToOverlay((byte *)_surface->getPixels() + _drawRect.top * _surface->pitch + _drawRect.left * _surface->format.bytesPerPixel, _surface->pitch,$ _, a# e3 d {: |
- _realBBox.left + _drawRect.left, _realBBox.top + _drawRect.top, _drawRect.width(), _drawRect.height());
+ v" j0 w6 N3 r- G) ` - }: ?, P% c3 @. |' q5 i
) V5 b7 e$ K% a9 l$ p1 c2 @0 C- return true;+ _( p, O" o* k' z( \
- }0 f0 y7 w1 s+ H7 K
复制代码
7 g A8 K! r# N$ z1 t' f% c4 z) L( w0 ?3 D/ c% o7 R$ V+ E
; f) m' c" H# K1 `/ H) Y6 Y$ s
% E- H8 Q4 O, | P a6 ?5 |1 ~- J/ I8 l
1 ]* `6 D( W) ^
9 e }8 M( w5 p) B; \% J |