Shockwave Curation: Difference between revisions

From Flashpoint Datahub
Jump to navigation Jump to search
(updated to take advantage of newScript commands)
(5 intermediate revisions by 3 users not shown)
Line 3: Line 3:


Please watch [https://youtu.be/QA9fbL4YplM this video] before curating Shockwave games. The video is long, but information packed! Hopefully it isn't too confusing - if you have any questions please ask in #shockwave-chat on the Flashpoint Discord server. The link in the next section of this page has the files in the video.
Please watch [https://youtu.be/QA9fbL4YplM this video] before curating Shockwave games. The video is long, but information packed! Hopefully it isn't too confusing - if you have any questions please ask in #shockwave-chat on the Flashpoint Discord server. The link in the next section of this page has the files in the video.
'''IMPORTANT:''' Here are some important notes and updates, since the video is slightly out of date and some information is no longer correct.
* ''Never curate a game if it has a Script Error!'' If there is a Script Error dialog there is likely something wrong with your curation. Please ask other Shockwave curators to help you.
* The structure of Flashpoint has changed since the tutorial video was created. The SPR versions are located at FPSoftware/Shockwave, while game files reside in the same location as the other technologies.
* If you use Flashpoint Core, the Launcher will give you a warning if you try and edit the SPR version in the Application Path to anything other than PJ101. This warning may be safely ignored.
* If you are receiving a Script Error, you may edit SPR.exe to SPRD.exe in your Application Path to see a more detailed error message.
* There is a new command called <code>--preload</code> which changes how the movie is loaded. If in SPRD you see a "handler not defined" error, try adding <code>--preload #movie</code> to the end of your Launch Command.
* Contrary to what the video says, it is now possible to curate Shockwave games in-browser. This works the same way as Flash in-browser does. Use this as a last resort option if you cannot get a game to work in SPR.


The SPR arguments explained in the video are also briefly outlined [https://github.com/FlashpointProject/Shockwave-Projector-Redirector-for-Flashpoint here] for your reference.
The SPR arguments explained in the video are also briefly outlined [https://github.com/FlashpointProject/Shockwave-Projector-Redirector-for-Flashpoint here] for your reference.
Line 17: Line 26:




'''Ezone'''
===Ezone===


Application Path: <code>FPSoftware\Shockwave\PJ851\SPR.exe</code>
Application Path: <code>FPSoftware\Shockwave\PJ851\SPR.exe</code>
Line 25: Line 34:




'''Robotduck'''
===Robotduck===


Application Path: <code>FPSoftware\Shockwave\PJ101\SPR.exe</code>
Application Path: <code>FPSoftware\Shockwave\PJ101\SPR.exe</code>


Launch Command:  
Launch Command:  
  "http://www.miniclip.com/games/bprally/en/game.dcr" --setTheRunMode "Plugin" --setExternalParam "sw1" "code=3952e9a8f4df995e30686249eb94825d4b84ae" --disableGoToNetPage --bugfixShockwave3DBadDriverList
  "http://www.miniclip.com/games/bprally/en/game.dcr" --setTheRunMode "Plugin" --disableGoToNetPage --do "forget(timeout('securityCheck Timeout'))" --do "go(2)"




'''Silent Bay Studios'''
===Silent Bay Studios===


Application Path: <code>FPSoftware\Shockwave\PJ1159\SPR.exe</code>
Application Path: <code>FPSoftware\Shockwave\PJ1159\SPR.exe</code>
Line 41: Line 50:




'''Rayamedia'''
===Rayamedia===


Application Path: <code>FPSoftware\Shockwave\PJ1159\SPR.exe</code>
Application Path: <code>FPSoftware\Shockwave\PJ1159\SPR.exe</code>
Line 54: Line 63:


If a game opens in SPR but exits immediately, it might be exiting once it reaches the last frame instead of looping properly. To fix this problem, add the string below to the end of the launch command.
If a game opens in SPR but exits immediately, it might be exiting once it reaches the last frame instead of looping properly. To fix this problem, add the string below to the end of the launch command.
  --newScriptText "on new me" --newScriptText "set flt to new(timeout(), '_fixLoop', the maxInteger, #timeoutHandler, me)" --newScriptText "set the persistent of flt to 1" --newScriptText "return(me)" --newScriptText "on timeoutHandler me" --newScriptText "on exitFrame me" --newScriptText "go(1)" --newScriptType #parent --do "global _fl" --do "set _fl to new(script(newScriptMember))"
  --newScriptText "on new me" --newScriptText "set flt to new(timeout(), '_fixLoop', the maxInteger, #timeoutHandler, me)" --newScriptText "set the persistent of flt to 1" --newScriptText "return(me)" --newScriptText "on timeoutHandler me" --newScriptText "on exitFrame me" --newScriptText "if the frame >= the lastFrame then go(1)" --newScriptType #parent --do "global _fl" --do "set _fl to new(script(newScriptMember))"




Line 79: Line 88:
* <code>--trace 1</code>: Lingo tracing messages will appear in SPRD's console.
* <code>--trace 1</code>: Lingo tracing messages will appear in SPRD's console.
* <code>--traceLogFile "messages.txt"</code>: Lingo tracing messages will be logged to the file <code>messages.txt</code>. You may specify a different filename if you prefer.
* <code>--traceLogFile "messages.txt"</code>: Lingo tracing messages will be logged to the file <code>messages.txt</code>. You may specify a different filename if you prefer.
'''See Also''': [[Shockwave Xtras]]
<noinclude>
[[Category:Curation Guides]]
</noinclude>

Revision as of 00:00, 28 July 2022

This page contains information and tips on curating Shockwave games.

Please watch this video before curating Shockwave games. The video is long, but information packed! Hopefully it isn't too confusing - if you have any questions please ask in #shockwave-chat on the Flashpoint Discord server. The link in the next section of this page has the files in the video.

IMPORTANT: Here are some important notes and updates, since the video is slightly out of date and some information is no longer correct.

  • Never curate a game if it has a Script Error! If there is a Script Error dialog there is likely something wrong with your curation. Please ask other Shockwave curators to help you.
  • The structure of Flashpoint has changed since the tutorial video was created. The SPR versions are located at FPSoftware/Shockwave, while game files reside in the same location as the other technologies.
  • If you use Flashpoint Core, the Launcher will give you a warning if you try and edit the SPR version in the Application Path to anything other than PJ101. This warning may be safely ignored.
  • If you are receiving a Script Error, you may edit SPR.exe to SPRD.exe in your Application Path to see a more detailed error message.
  • There is a new command called --preload which changes how the movie is loaded. If in SPRD you see a "handler not defined" error, try adding --preload #movie to the end of your Launch Command.
  • Contrary to what the video says, it is now possible to curate Shockwave games in-browser. This works the same way as Flash in-browser does. Use this as a last resort option if you cannot get a game to work in SPR.

The SPR arguments explained in the video are also briefly outlined here for your reference.

Files

Here is the download link for the files mentioned in the video.

https://drive.google.com/open?id=1mHgmWcZ7ayLedwFygtVao4AHJlFm-urG

Examples

Here are Application Paths/Launch Commands you can copy-paste into Flashpoint Core for each of the publishers mentioned in the video - be sure to substitute in your game's name/URL. Robotduck's includes the security code that is required.


Ezone

Application Path: FPSoftware\Shockwave\PJ851\SPR.exe

Launch Command:

"http://www.ezone.com/games/space/wrapper_ezo.dcr" --do "member('gameName').text = 'space.dcr'" --forceTheExitLock 0


Robotduck

Application Path: FPSoftware\Shockwave\PJ101\SPR.exe

Launch Command:

"http://www.miniclip.com/games/bprally/en/game.dcr" --setTheRunMode "Plugin" --disableGoToNetPage --do "forget(timeout('securityCheck Timeout'))" --do "go(2)"


Silent Bay Studios

Application Path: FPSoftware\Shockwave\PJ1159\SPR.exe

Launch Command:

"http://www.miniclip.com/games/game-name/en/wrapper_silentbaystudios.dcr" --do "member('gameUrl').text = 'http://www.miniclip.com/games/game-name/en/game_name.dcr'"


Rayamedia

Application Path: FPSoftware\Shockwave\PJ1159\SPR.exe

Launch Command:

"http://www.miniclip.com/games/game-name/en/wrapper_rayamedia.dcr" --do "member('gameUrl').text = 'http://www.miniclip.com/games/game-name/en/game_name.dcr'"

More Tips

Here are some additional tips for solving problems you may encounter when curating.


If a game opens in SPR but exits immediately, it might be exiting once it reaches the last frame instead of looping properly. To fix this problem, add the string below to the end of the launch command.

--newScriptText "on new me" --newScriptText "set flt to new(timeout(), '_fixLoop', the maxInteger, #timeoutHandler, me)" --newScriptText "set the persistent of flt to 1" --newScriptText "return(me)" --newScriptText "on timeoutHandler me" --newScriptText "on exitFrame me" --newScriptText "if the frame >= the lastFrame then go(1)" --newScriptType #parent --do "global _fl" --do "set _fl to new(script(newScriptMember))"


To make a game close with the X button but not the escape key, add this to the end of the launch command:

--newScriptText "on closeRequest" --newScriptText "if keyPressed(53) = 0 then quit"


If a game moves to a corner of the screen instead of staying in the center, add this to the end of the launch command:

--do "set the centerStage to 1"


If a game window opens at the wrong size, you can combine the previous command with one that sets the window resolution to the size of the original Shockwave embed. For example, this command would be suitable for a game originally embedded at 800x600 pixels:

--do "set the rect of the stage to rect(0, 0, 800, 600)" --do "set the centerStage to 1" --do "set the fixStageSize to 1"

Debugging

Flashpoint Core also includes a special debug version of SPR, appropriately called SPRD. To use SPRD, just replace SPR.exe with SPRD.exe in a Shockwave game's Application Path.

SPRD shows more detailed error messages, which can be helpful for debugging games. It also provides a console window. Here's how to use the console:

  • Type put variableName to print the value of variableName to the console.
  • Type any Lingo command to run it inside the game.

Finally, SPRD introduces two exclusive arguments to help you debug games:

  • --trace 1: Lingo tracing messages will appear in SPRD's console.
  • --traceLogFile "messages.txt": Lingo tracing messages will be logged to the file messages.txt. You may specify a different filename if you prefer.


See Also: Shockwave Xtras