Shockwave Curation: Difference between revisions

From Flashpoint Datahub
Jump to navigation Jump to search
No edit summary
(25 intermediate revisions by 5 users not shown)
Line 1: Line 1:


This page contains information and tips on curating Shockwave games. Please watch this video before curating Shockwave games:
This page contains information and tips on curating Shockwave games.  


https://youtu.be/QA9fbL4YplM
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.


The video is long, but information packed! Hopefully it isn't too confusing - if you have any questions please ask in this channel. The link at the bottom of this page has the files in the video. The video is still up to date as of 2019-03-17, though there will likely be changes to how curations work soon.
'''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.
 
== Files ==
 
Here is the download link for the files mentioned in the video.
 
https://drive.google.com/open?id=1mHgmWcZ7ayLedwFygtVao4AHJlFm-urG


== Examples ==
== 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: <code>FPSoftware\Shockwave\PJ851\SPR.exe</code>
Launch Command:
"http://www.ezone.com/games/space/wrapper_ezo.dcr" --do "member('gameName').text = 'space.dcr'" --forceTheExitLock 0
===Robotduck===
Application Path: <code>FPSoftware\Shockwave\PJ101\SPR.exe</code>
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: <code>FPSoftware\Shockwave\PJ1159\SPR.exe</code>
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: <code>FPSoftware\Shockwave\PJ1159\SPR.exe</code>
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))"


Here are Application Paths/Launch Commands you can copy-paste into Flashpoint Core 2 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.


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"


'''Ezone'''


Application Path: Games\Shockwave\PJ101\SPR
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:
Launch Command: "http://www.ezone.com/games/space/wrapper_ezo.dcr" --do "member('gameName').text = 'space.dcr'" --forceTheExitLock 0
--do "set the centerStage to 1"




'''Robotduck'''
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"


Application Path: Games\Shockwave\PJ101\SPR
== Debugging ==
Launch Command: "http://www.miniclip.com/games/bprally/en/game.dcr" --setTheRunMode "Plugin" --setExternalParam "sw1" "code=3952e9a8f4df995e30686249eb94825d4b84ae" --disableGoToNetPage --bugfixShockwave3DBadDriverList


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


'''Silent Bay Studios'''
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 <code>put variableName</code> to print the value of <code>variableName</code> to the console.
* Type any Lingo command to run it inside the game.


Application Path: Games\Shockwave\PJ1159\SPR
Finally, SPRD introduces two exclusive arguments to help you debug games:
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'"
* <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.




'''Download Link'''
'''See Also''': [[Shockwave Xtras]]


https://drive.google.com/file/d/179xC9Ro8ZcF-QM4RF452uE9zZfotdprN/view?usp=sharing
<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