[Scummvm-git-logs] scummvm master -> 7eb6f0a4e7f35f83ac6c9bf4e6a410f0ea88e0e7

sev- noreply at scummvm.org
Thu Oct 2 00:15:48 UTC 2025


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
7eb6f0a4e7 DIRECTOR: Further cleanup of keywords


Commit: 7eb6f0a4e7f35f83ac6c9bf4e6a410f0ea88e0e7
    https://github.com/scummvm/scummvm/commit/7eb6f0a4e7f35f83ac6c9bf4e6a410f0ea88e0e7
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2025-10-02T02:14:24+02:00

Commit Message:
DIRECTOR: Further cleanup of keywords

- Shapes
- playAccell paramaters
- XCMDGlue methods (it got built-in)

Changed paths:
    engines/director/lingo/docs/d4-d5.txt
    engines/director/lingo/lingo-builtins.cpp


diff --git a/engines/director/lingo/docs/d4-d5.txt b/engines/director/lingo/docs/d4-d5.txt
index e3b24866725..27a578a427a 100644
--- a/engines/director/lingo/docs/d4-d5.txt
+++ b/engines/director/lingo/docs/d4-d5.txt
@@ -4,15 +4,10 @@
 > appFileSpec
 > beginRecording
 > bitmap
-> bold
 > button
-> byFrame
 > case
 > checkMark
-> click
-> clickStop
 > collectChangeRects
-> condense
 > cpuHogTicks
 > deleteAll
 > doEffects
@@ -20,7 +15,6 @@
 > editFocusSprite
 > endRecording
 > enterFrame
-> extend
 > fileType
 > filmLoop
 > fixed
@@ -29,7 +23,6 @@
 > immediate
 > interface
 > is
-> italic
 > limit
 > linearList
 > log10
@@ -39,7 +32,6 @@
 > mAtTransition
 > mCanDoTrans
 > mciBusy
-> mciWait
 > mCloseEditor
 > members
 > messageLock
@@ -72,52 +64,35 @@
 > mTransDial
 > mUpdate
 > music
-> mverb
-> mVerbDispose
 > noclear
-> noflush
-> nosound
-> noUpdate
 > object
 > off
 > ole
 > otherwise
-> outline
-> oval
 > parent
-> plain
 > playAccel
-> playCast`
-> playRect
+> playCast
 > productName
 > productVersion
 > propList
-> pushButton
 > quickTime
-> radioButton
 > resource
 > richText
-> roundRect
 > scroll
 > searchPaths
 > send
 > sendAncestor
 > setTrackEnabled
-> shadow
 > shape
 > startScript
 > super
 > symbol
-> sync
 > textWrap
 > timeCode
 > timeout
 > track
 > tracks
-> underline
 > updateRect
 > vga
 > videoForWindows
 > visibility
-> whatfits
-> xcmdglue
diff --git a/engines/director/lingo/lingo-builtins.cpp b/engines/director/lingo/lingo-builtins.cpp
index cba8a2e37ef..5d0c45ebd46 100644
--- a/engines/director/lingo/lingo-builtins.cpp
+++ b/engines/director/lingo/lingo-builtins.cpp
@@ -2001,6 +2001,24 @@ void LB::b_play(int nargs) {
 void LB::b_playAccel(int nargs) {
 	g_lingo->printSTUBWithArglist("b_playAccel", nargs);
 
+/*
+	byFrame	Read one frame at a time from disk.
+	click		Stop and pass on mouse event.
+	clickStop	Stop and don't pass on mouse event.
+	loop		Play movie continuously.
+	noFlush		Prevents the current interactive movie from being
+				removed from memory when the Accelerator
+				document is loaded.
+	noSound		Don’t play sound.
+	noUpdate	Don’t update screen at end of movie.
+	playRect, l, t, r, b
+				Stop the movie when the pointer is moved outside the coordinates (left, top, right, bottom).
+	repeat, n 	Number of times to repeat.
+	sync		Attempt to play in sync with scan rate of monitor.
+	whatFits	Play only what fits into memory.
+	tempo, n	Set the tempo of the movie.
+*/
+
 	g_lingo->dropStack(nargs);
 }
 




More information about the Scummvm-git-logs mailing list