home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 36 / CDE36_B / CDE36_B.mdf / Gem / GemMaster.exe / GemMaster / Access.js next >
Encoding:
JavaScript  |  1999-12-14  |  12.5 KB  |  531 lines

  1. ///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. //    Javascript functions, used by html page to get at java app.
  4. //
  5. ///////////////////////////////////////////////////////////////////////////////////////
  6.  
  7.  
  8. ///////////////////////////////////////////////////////////////////////////////////////
  9. //    Globals
  10. ///////////////////////////////////////////////////////////////////////////////////////
  11. var    Enable3dMode = true;
  12. var    EnableAudio = true;
  13. var    StartingLevel = "1";
  14. var    AudioUnChecked = "WebImages/audio_00.png";
  15. var    AudioChecked = "WebImages/audio_02.png";
  16. var    Use3dUnChecked = "WebImages/3dmode_00.png";
  17. var    Use3dChecked = "WebImages/3dmode_02.png";
  18. var    Enable3dModeCookieString = "Use3dMode";
  19. var    EnableAudioCookieString = "UseAudio";
  20. var    StartingLevelCookieString = "StartingLevel";
  21. var CookieExpDate;
  22. var    FirstTimeRun = false;
  23. var    AppletInitialized = false;
  24. var RebootRequired = false;
  25.  
  26.  
  27.  
  28. ///////////////////////////////////////////////////////////////////////////////////////
  29. //
  30. //    AppletInitComplete()
  31. //    Set applet init flag.
  32. //
  33. ///////////////////////////////////////////////////////////////////////////////////////
  34. function AppletInitComplete()
  35. {
  36.     AppletInitialized = true;
  37.  
  38. } // AppletInitComplete()
  39.  
  40.  
  41.  
  42. ///////////////////////////////////////////////////////////////////////////////////////
  43. //
  44. //    GetDefaults()
  45. //    Get defaults.
  46. //
  47. ///////////////////////////////////////////////////////////////////////////////////////
  48. function GetDefaults()
  49. {
  50.  
  51.  
  52.     ///////////////////////////////////////////////////////////////////////////////////////
  53.     // get 2d/3d choice
  54.     ///////////////////////////////////////////////////////////////////////////////////////
  55.     if ( GetCookie( Enable3dModeCookieString ) == null )
  56.     {
  57.         Enable3dMode = true;
  58.         FirstTimeRun = true;
  59.     }
  60.     else if ( GetCookie( Enable3dModeCookieString ) == "true" )
  61.     {
  62.         Enable3dMode = true;
  63.     }
  64.     else
  65.     {
  66.         Enable3dMode = false;
  67.     }
  68.  
  69.     
  70.     ///////////////////////////////////////////////////////////////////////////////////////
  71.     // get audio choice
  72.     ///////////////////////////////////////////////////////////////////////////////////////
  73.     if ( GetCookie( EnableAudioCookieString ) == null )
  74.     {
  75.         EnableAudio = true;
  76.     }
  77.     else if ( GetCookie( EnableAudioCookieString ) == "true" )
  78.     {
  79.         EnableAudio = true;
  80.     }
  81.     else
  82.     {
  83.         EnableAudio = false;
  84.     }
  85.  
  86.     
  87.     ///////////////////////////////////////////////////////////////////////////////////////
  88.     // get starting level choice
  89.     ///////////////////////////////////////////////////////////////////////////////////////
  90.     StartingLevel = GetCookie( StartingLevelCookieString );
  91.     if ( StartingLevel == null )
  92.     {
  93.         StartingLevel = "1";
  94.     }
  95.     
  96. } // GetDefaults()
  97.  
  98.  
  99.  
  100. ///////////////////////////////////////////////////////////////////////////////////////
  101. //
  102. //    ApplyDefaults()
  103. //    Apply defaults.
  104. //
  105. ///////////////////////////////////////////////////////////////////////////////////////
  106. function ApplyDefaults()
  107. {
  108.  
  109.  
  110.     ///////////////////////////////////////////////////////////////////////////////////////
  111.     // apply 2d/3d choice
  112.     ///////////////////////////////////////////////////////////////////////////////////////
  113.     if ( Enable3dMode == true )
  114.     {
  115.         document.images["Enable3dMode"].src = Use3dChecked;
  116.     }
  117.     else
  118.     {
  119.         document.images["Enable3dMode"].src = Use3dUnChecked;
  120.     }
  121.     if ( AppletInitialized )
  122.     {
  123.         document.WTJavaApplet.Set3dMode( Enable3dMode );
  124.     }
  125.  
  126.     
  127.     ///////////////////////////////////////////////////////////////////////////////////////
  128.     // apply audio choice
  129.     ///////////////////////////////////////////////////////////////////////////////////////
  130.     if ( EnableAudio == true )
  131.     {
  132.         document.images["EnableAudio"].src = AudioChecked;
  133.     }
  134.     else
  135.     {
  136.         document.images["EnableAudio"].src = AudioUnChecked;
  137.     }
  138.     if ( AppletInitialized )
  139.     {
  140.         document.WTJavaApplet.SetAudio( EnableAudio );
  141.     }
  142.  
  143.     
  144.     ///////////////////////////////////////////////////////////////////////////////////////
  145.     // apply starting level choice
  146.     ///////////////////////////////////////////////////////////////////////////////////////
  147.     ApplyNewStartingLevel();
  148.  
  149.  
  150.     ///////////////////////////////////////////////////////////////////////////////////////
  151.     // 
  152.     ///////////////////////////////////////////////////////////////////////////////////////
  153.     document.images["ButtonRestartGame"].src = "WebImages/2start_00.png";
  154.     document.images["ButtonQuitGame"].src = "WebImages/quit_00.png";
  155.  
  156. } // ApplyDefaults()
  157.  
  158.  
  159.  
  160. ///////////////////////////////////////////////////////////////////////////////////////
  161. //
  162. //    Force2d()
  163. //    Force into 2d mode.
  164. //
  165. ///////////////////////////////////////////////////////////////////////////////////////
  166. function Force2d()
  167. {
  168.  
  169.     // allow force2d only if its the first time run
  170.     if ( FirstTimeRun == true )
  171.     {
  172.         Enable3dMode = false;
  173.         document.images["Enable3dMode"].src = Use3dUnChecked;
  174.     }
  175.         
  176. } // Force2d()
  177.  
  178.  
  179.  
  180. ///////////////////////////////////////////////////////////////////////////////////////
  181. //
  182. //    begin()
  183. //    Starts up the web driver.
  184. //
  185. ///////////////////////////////////////////////////////////////////////////////////////
  186. function begin()
  187. {
  188.  
  189.     // check if reboot required
  190.     {
  191.     
  192.         // locals    
  193.         var    SetupOk = true;
  194.     
  195.         // check if our jar has been loaded
  196.         SetupOk &= document.WTCheck.CheckIntegrity();
  197.         
  198.         //
  199.         if ( SetupOk == false )
  200.         {
  201.             RebootRequired = true;
  202.             alert( "Java requires you to restart your system when new components are installed. You will need to do this before running this application for the first time." );
  203.             return;
  204.         }
  205.     }
  206.  
  207.     // check if driver installed ok
  208.     if ( driverExists() == false )
  209.     {
  210.         if ( confirm( "Wild Tangent webdriver may not be properly installed. Launch troubleshooting web page?" ) == true )
  211.         {
  212.             window.open( "trouble.html" );
  213.         }
  214.         return;
  215.     }
  216.  
  217.     // get app defaults
  218.     GetDefaults();
  219.  
  220.     // init cookie expiry data
  221.     CookieExpDate = new Date();
  222.     FixCookieDate( CookieExpDate ); 
  223.     CookieExpDate.setTime( CookieExpDate.getTime() + ( 365 * 24 * 60 * 60 * 1000 ) );
  224.  
  225.     // startup our java app
  226.     document.WTJavaApplet.begin( document.wtObject );
  227.     
  228.     // apply default settings
  229.     ApplyDefaults();
  230.     
  231.     // update top lists
  232.     //UpdateTopLists();
  233.  
  234. } // begin()
  235.  
  236.  
  237.  
  238. ///////////////////////////////////////////////////////////////////////////////////////
  239. //
  240. //    end()
  241. //    Shuts down the web driver.
  242. //
  243. ///////////////////////////////////////////////////////////////////////////////////////
  244. function end()
  245. {
  246.  
  247.     // shut down wt driver
  248.     if ( AppletInitialized )
  249.     {
  250.         document.WTJavaApplet.end();
  251.     }
  252.  
  253. } // end()
  254.  
  255.  
  256.  
  257. ///////////////////////////////////////////////////////////////////////////////////////
  258. //
  259. //    SaveBestTable()
  260. //    Save out top score/jewels/level table.
  261. //
  262. ///////////////////////////////////////////////////////////////////////////////////////
  263. function SaveBestTable(
  264.     CookieName,
  265.     Data )
  266. {
  267.     SetCookie( CookieName, Data, CookieExpDate );
  268.  
  269. } // SaveBestTable()
  270.  
  271.  
  272.  
  273. ///////////////////////////////////////////////////////////////////////////////////////
  274. //
  275. //    ReloadBestTable()
  276. //    Reload best table data.
  277. //
  278. ///////////////////////////////////////////////////////////////////////////////////////
  279. function ReloadBestTable()
  280. {
  281.  
  282.     // locals
  283.     var    Score, Jewels, Level;
  284.  
  285.     // get best score
  286.     Score = GetCookie( "BestScore" );
  287.     if ( Score != null )
  288.     {
  289.         Score = parseInt( Score );
  290.     }
  291.     else
  292.     {
  293.         Score = 0;
  294.     }    
  295.         
  296.     // get best jewels
  297.     Jewels = GetCookie( "BestJewels" );
  298.     if ( Jewels != null )
  299.     {
  300.         Jewels = parseInt( Jewels );
  301.     }
  302.     else
  303.     {
  304.         Jewels = 0;
  305.     }    
  306.         
  307.     // get best level
  308.     Level = GetCookie( "BestLevel" );
  309.     if ( Level != null )
  310.     {
  311.         Level = parseInt( Level );
  312.     }
  313.     else
  314.     {
  315.         Level = 0;
  316.     }    
  317.  
  318.     // update table    
  319.     if ( AppletInitialized )
  320.     {
  321.         document.WTJavaApplet.ReloadBestTable( Score, Jewels, Level );
  322.     }    
  323.     
  324. } // ReloadBestTable()
  325.  
  326.  
  327.  
  328. ///////////////////////////////////////////////////////////////////////////////////////
  329. //
  330. //    MouseClick()
  331. //    Handle mouse clicks.
  332. //
  333. ///////////////////////////////////////////////////////////////////////////////////////
  334. function MouseClick()
  335. {
  336.  
  337.     // send mouse click to java app
  338.     if ( AppletInitialized )
  339.     {
  340.         document.WTJavaApplet.MouseClick();
  341.     }
  342.  
  343. } // MouseClick()
  344.     
  345.  
  346.  
  347. ///////////////////////////////////////////////////////////////////////////////////////
  348. //
  349. //    Toggle3dMode()
  350. //    Toggles 3d mode on/off.
  351. //
  352. ///////////////////////////////////////////////////////////////////////////////////////
  353. function Toggle3dMode()
  354. {
  355.  
  356.     // adjust the java app
  357.     Enable3dMode = !Enable3dMode;
  358.     if ( AppletInitialized )
  359.     {
  360.         document.WTJavaApplet.Set3dMode( Enable3dMode );
  361.     }
  362.     
  363.     // adjust the on screen checkbox
  364.     if ( Enable3dMode == 0 )
  365.     {
  366.         document.images["Enable3dMode"].src = Use3dUnChecked;
  367.     }
  368.     else
  369.     {        
  370.         document.images["Enable3dMode"].src = Use3dChecked;
  371.     }
  372.     
  373.     // write out the cookie
  374.     SetCookie( Enable3dModeCookieString, Enable3dMode, CookieExpDate );
  375.  
  376. } // Toggle3dMode()
  377.     
  378.  
  379.  
  380. ///////////////////////////////////////////////////////////////////////////////////////
  381. //
  382. //    ToggleAudio()
  383. //    Toggles audio on/off.
  384. //
  385. ///////////////////////////////////////////////////////////////////////////////////////
  386. function ToggleAudio()
  387. {
  388.  
  389.     // adjust the java app
  390.     EnableAudio = !EnableAudio;
  391.     if ( AppletInitialized )
  392.     {
  393.         document.WTJavaApplet.SetAudio( EnableAudio );
  394.     }
  395.     
  396.     // adjust the on screen checkbox
  397.     if ( EnableAudio == 0 )
  398.     {
  399.         document.images["EnableAudio"].src = AudioUnChecked;
  400.     }
  401.     else
  402.     {        
  403.         document.images["EnableAudio"].src = AudioChecked;
  404.     }
  405.  
  406.     // write out the cookie
  407.     SetCookie( EnableAudioCookieString, EnableAudio, CookieExpDate );
  408.  
  409. } // ToggleAudio()
  410.  
  411.  
  412.  
  413. ///////////////////////////////////////////////////////////////////////////////////////
  414. //
  415. //    ToggleAudio2()
  416. //    
  417. //
  418. ///////////////////////////////////////////////////////////////////////////////////////
  419. function ToggleAudio2()
  420. {
  421.  
  422. } // ToggleAudio2()
  423.  
  424.  
  425.  
  426. ///////////////////////////////////////////////////////////////////////////////////////
  427. //
  428. //    RestartGame()
  429. //    Restarts game.
  430. //
  431. ///////////////////////////////////////////////////////////////////////////////////////
  432. function RestartGame()
  433. {
  434.  
  435.     // start a new game
  436.     if ( AppletInitialized )
  437.     {
  438.         document.WTJavaApplet.StartGame();
  439.     }
  440.     
  441.     // display reboot required message if needed
  442.     if ( RebootRequired == true )
  443.     {
  444.         alert( "Java requires you to restart your system before running this application." );
  445.     }
  446.  
  447. } // RestartGame()
  448.  
  449.     
  450.  
  451. ///////////////////////////////////////////////////////////////////////////////////////
  452. //
  453. //    QuitGame()
  454. //    Quits game.
  455. //
  456. ///////////////////////////////////////////////////////////////////////////////////////
  457. function QuitGame()
  458. {
  459.     window.close();
  460.  
  461. } // QuitGame()
  462.  
  463.  
  464.  
  465. ///////////////////////////////////////////////////////////////////////////////////////
  466. //
  467. //    DecStartingLevel()
  468. //    Decrease the starting level.
  469. //
  470. ///////////////////////////////////////////////////////////////////////////////////////
  471. function DecStartingLevel()
  472. {
  473.     if ( AppletInitialized )
  474.     {
  475.         StartingLevel = document.WTJavaApplet.DecStartingLevel();
  476.         ApplyNewStartingLevel();
  477.         SetCookie( StartingLevelCookieString, StartingLevel, CookieExpDate );
  478.     }
  479.     
  480. } // DecStartingLevel()
  481.  
  482.  
  483.  
  484. ///////////////////////////////////////////////////////////////////////////////////////
  485. //
  486. //    IncStartingLevel()
  487. //    Increase the starting level.
  488. //
  489. ///////////////////////////////////////////////////////////////////////////////////////
  490. function IncStartingLevel()
  491. {
  492.     if ( AppletInitialized )
  493.     {
  494.         StartingLevel = document.WTJavaApplet.IncStartingLevel();
  495.         ApplyNewStartingLevel();
  496.         SetCookie( StartingLevelCookieString, StartingLevel, CookieExpDate );
  497.     }
  498.  
  499. } // IncStartingLevel()
  500.  
  501.  
  502.  
  503. ///////////////////////////////////////////////////////////////////////////////////////
  504. //
  505. //    ApplyNewStartingLevel()
  506. //    Apply the new starting level.
  507. //
  508. ///////////////////////////////////////////////////////////////////////////////////////
  509. function ApplyNewStartingLevel()
  510. {
  511.     
  512.     if ( AppletInitialized )
  513.     {
  514.  
  515.         // locals    
  516.         var    NumericStartingLevel;
  517.     
  518.         // get numeric starting level, correcting it if its bogus
  519.         NumericStartingLevel = parseInt( StartingLevel );
  520.         if ( ( NumericStartingLevel < 1 ) || ( NumericStartingLevel > 9 ) )
  521.         {
  522.             NumericStartingLevel = 1;
  523.             StartingLevel = NumericStartingLevel;
  524.         }
  525.     
  526.         // apply new starting level
  527.         document.WTJavaApplet.SetStartingLevel( NumericStartingLevel );
  528.     }
  529.     
  530. } // ApplyNewStartingLevel()
  531.