diff --git a/GameSparker.java b/GameSparker.java index 223661e..ca8abad 100644 --- a/GameSparker.java +++ b/GameSparker.java @@ -769,14 +769,17 @@ public void loadstage(ContO aconto[], ContO aconto1[], Medium medium, Trackers t /** * motion * @param amadness madness - * @param medium medium + * @param shakeAmt shake sensitivity + * 1 normal + * 20 maximum + * @param maxAmt maximum displacement of the screen while shaking */ - public void intializeMoto(Madness amadness[], Medium medium) { + public void initMoto(Madness amadness[], int shakeAmt, int maxAmt) { if (amadness[0].shakedam > 0) { - shaka = amadness[0].shakedam / 20; + shaka = amadness[0].shakedam / (20 / shakeAmt); amadness[0].shakedam = 0; - if (shaka > 25) { - shaka = 25; + if (shaka > maxAmt) { + shaka = maxAmt; } shaka--; } @@ -1175,7 +1178,7 @@ public void run() { if (view == 0) { medium.follow(aconto1[0], amadness[0].cxz, u[0].lookback); xtgraphics.stat(amadness, checkpoints, u[0], aconto1, true); - intializeMoto(amadness, medium); + initMoto(amadness, 1, 25); } if (view == 1) { medium.around(aconto1[0], false); diff --git a/doc/CheckPoints.html b/doc/CheckPoints.html index a170d1d..a32c1f3 100644 --- a/doc/CheckPoints.html +++ b/doc/CheckPoints.html @@ -2,7 +2,7 @@ - + CheckPoints diff --git a/doc/ContO.html b/doc/ContO.html index e3c81af..ccb7807 100644 --- a/doc/ContO.html +++ b/doc/ContO.html @@ -2,7 +2,7 @@ - + ContO diff --git a/doc/Control.html b/doc/Control.html index 637d7ec..ad138ec 100644 --- a/doc/Control.html +++ b/doc/Control.html @@ -2,7 +2,7 @@ - + Control diff --git a/doc/DesktopContext.html b/doc/DesktopContext.html index bb65fc6..088294f 100644 --- a/doc/DesktopContext.html +++ b/doc/DesktopContext.html @@ -2,7 +2,7 @@ - + DesktopContext diff --git a/doc/DesktopSoundClip.html b/doc/DesktopSoundClip.html index 2bbb1dc..ecaaa5a 100644 --- a/doc/DesktopSoundClip.html +++ b/doc/DesktopSoundClip.html @@ -2,7 +2,7 @@ - + DesktopSoundClip diff --git a/doc/DesktopStub.html b/doc/DesktopStub.html index 2196e2a..efcb6a1 100644 --- a/doc/DesktopStub.html +++ b/doc/DesktopStub.html @@ -2,7 +2,7 @@ - + DesktopStub diff --git a/doc/FontHandler.html b/doc/FontHandler.html index c08a60f..30d3e81 100644 --- a/doc/FontHandler.html +++ b/doc/FontHandler.html @@ -2,7 +2,7 @@ - + FontHandler diff --git a/doc/GameSparker.html b/doc/GameSparker.html index 4d40db5..6d21c9d 100644 --- a/doc/GameSparker.html +++ b/doc/GameSparker.html @@ -2,7 +2,7 @@ - + GameSparker @@ -386,8 +386,9 @@

Method Summary

void -intializeMoto(Madness[] amadness, - Medium medium) +initMoto(Madness[] amadness, + int shakeAmt, + int maxAmt)
motion
@@ -1065,19 +1066,23 @@

loadstage

- + diff --git a/doc/Madness.html b/doc/Madness.html index 18158c3..2fd882a 100644 --- a/doc/Madness.html +++ b/doc/Madness.html @@ -2,7 +2,7 @@ - + Madness diff --git a/doc/Medium.html b/doc/Medium.html index 516459a..7817cf4 100644 --- a/doc/Medium.html +++ b/doc/Medium.html @@ -2,7 +2,7 @@ - + Medium diff --git a/doc/Mod.html b/doc/Mod.html index f66bfdd..c010302 100644 --- a/doc/Mod.html +++ b/doc/Mod.html @@ -2,7 +2,7 @@ - + Mod diff --git a/doc/ModInstrument.html b/doc/ModInstrument.html index 9723270..9cb4a99 100644 --- a/doc/ModInstrument.html +++ b/doc/ModInstrument.html @@ -2,7 +2,7 @@ - + ModInstrument diff --git a/doc/ModSlayer.html b/doc/ModSlayer.html index da30de5..729a80d 100644 --- a/doc/ModSlayer.html +++ b/doc/ModSlayer.html @@ -2,7 +2,7 @@ - + ModSlayer diff --git a/doc/ModTrackInfo.html b/doc/ModTrackInfo.html index ee6d847..2d87722 100644 --- a/doc/ModTrackInfo.html +++ b/doc/ModTrackInfo.html @@ -2,7 +2,7 @@ - + ModTrackInfo diff --git a/doc/Plane.html b/doc/Plane.html index 3a64818..95966bb 100644 --- a/doc/Plane.html +++ b/doc/Plane.html @@ -2,7 +2,7 @@ - + Plane diff --git a/doc/RadicalMath.html b/doc/RadicalMath.html index f411cb8..73db3ac 100644 --- a/doc/RadicalMath.html +++ b/doc/RadicalMath.html @@ -2,7 +2,7 @@ - + RadicalMath diff --git a/doc/RadicalMod.html b/doc/RadicalMod.html index ffc7b15..6c98890 100644 --- a/doc/RadicalMod.html +++ b/doc/RadicalMod.html @@ -2,7 +2,7 @@ - + RadicalMod diff --git a/doc/Record.html b/doc/Record.html index 4c55d84..6e08704 100644 --- a/doc/Record.html +++ b/doc/Record.html @@ -2,7 +2,7 @@ - + Record diff --git a/doc/RunApp.html b/doc/RunApp.html index 3f32d6d..ed93d98 100644 --- a/doc/RunApp.html +++ b/doc/RunApp.html @@ -2,7 +2,7 @@ - + RunApp diff --git a/doc/SuperClip.html b/doc/SuperClip.html index bdbb9f0..2a53cde 100644 --- a/doc/SuperClip.html +++ b/doc/SuperClip.html @@ -2,7 +2,7 @@ - + SuperClip diff --git a/doc/SuperStream.html b/doc/SuperStream.html index 933ac4e..8d251b0 100644 --- a/doc/SuperStream.html +++ b/doc/SuperStream.html @@ -2,7 +2,7 @@ - + SuperStream diff --git a/doc/Trackers.html b/doc/Trackers.html index e2a87b3..04f40c6 100644 --- a/doc/Trackers.html +++ b/doc/Trackers.html @@ -2,7 +2,7 @@ - + Trackers diff --git a/doc/UlawUtils.html b/doc/UlawUtils.html index e4b86b3..86d15ce 100644 --- a/doc/UlawUtils.html +++ b/doc/UlawUtils.html @@ -2,7 +2,7 @@ - + UlawUtils diff --git a/doc/Utility.html b/doc/Utility.html index aad4094..6943b54 100644 --- a/doc/Utility.html +++ b/doc/Utility.html @@ -2,7 +2,7 @@ - + Utility diff --git a/doc/Wheels.html b/doc/Wheels.html index 51c3894..2e0580b 100644 --- a/doc/Wheels.html +++ b/doc/Wheels.html @@ -2,7 +2,7 @@ - + Wheels diff --git a/doc/allclasses-frame.html b/doc/allclasses-frame.html index a3b32d5..5a40ca7 100644 --- a/doc/allclasses-frame.html +++ b/doc/allclasses-frame.html @@ -2,7 +2,7 @@ - + All Classes diff --git a/doc/allclasses-noframe.html b/doc/allclasses-noframe.html index 342275d..08c5853 100644 --- a/doc/allclasses-noframe.html +++ b/doc/allclasses-noframe.html @@ -2,7 +2,7 @@ - + All Classes diff --git a/doc/class-use/CheckPoints.html b/doc/class-use/CheckPoints.html index b8f029d..2a547ba 100644 --- a/doc/class-use/CheckPoints.html +++ b/doc/class-use/CheckPoints.html @@ -2,7 +2,7 @@ - + Uses of Class CheckPoints diff --git a/doc/class-use/ContO.html b/doc/class-use/ContO.html index 908174e..2898a3c 100644 --- a/doc/class-use/ContO.html +++ b/doc/class-use/ContO.html @@ -2,7 +2,7 @@ - + Uses of Class ContO diff --git a/doc/class-use/Control.html b/doc/class-use/Control.html index 3e67d62..97e0834 100644 --- a/doc/class-use/Control.html +++ b/doc/class-use/Control.html @@ -2,7 +2,7 @@ - + Uses of Class Control diff --git a/doc/class-use/DesktopContext.html b/doc/class-use/DesktopContext.html index 79d8b04..76d4891 100644 --- a/doc/class-use/DesktopContext.html +++ b/doc/class-use/DesktopContext.html @@ -2,7 +2,7 @@ - + Uses of Class DesktopContext diff --git a/doc/class-use/DesktopSoundClip.html b/doc/class-use/DesktopSoundClip.html index 3cf4bac..83893ee 100644 --- a/doc/class-use/DesktopSoundClip.html +++ b/doc/class-use/DesktopSoundClip.html @@ -2,7 +2,7 @@ - + Uses of Class DesktopSoundClip diff --git a/doc/class-use/DesktopStub.html b/doc/class-use/DesktopStub.html index 84de332..ccdbeef 100644 --- a/doc/class-use/DesktopStub.html +++ b/doc/class-use/DesktopStub.html @@ -2,7 +2,7 @@ - + Uses of Class DesktopStub diff --git a/doc/class-use/FontHandler.html b/doc/class-use/FontHandler.html index 574fd17..9760f03 100644 --- a/doc/class-use/FontHandler.html +++ b/doc/class-use/FontHandler.html @@ -2,7 +2,7 @@ - + Uses of Class FontHandler diff --git a/doc/class-use/GameSparker.html b/doc/class-use/GameSparker.html index 5ae7d34..57da20b 100644 --- a/doc/class-use/GameSparker.html +++ b/doc/class-use/GameSparker.html @@ -2,7 +2,7 @@ - + Uses of Class GameSparker diff --git a/doc/class-use/Madness.html b/doc/class-use/Madness.html index 7c304b1..95a6854 100644 --- a/doc/class-use/Madness.html +++ b/doc/class-use/Madness.html @@ -2,7 +2,7 @@ - + Uses of Class Madness @@ -120,8 +120,9 @@

Uses of Madness void -GameSparker.intializeMoto(Madness[] amadness, - Medium medium) +GameSparker.initMoto(Madness[] amadness, + int shakeAmt, + int maxAmt)
motion
diff --git a/doc/class-use/Medium.html b/doc/class-use/Medium.html index 8bfec75..f022f15 100644 --- a/doc/class-use/Medium.html +++ b/doc/class-use/Medium.html @@ -2,7 +2,7 @@ - + Uses of Class Medium @@ -124,13 +124,6 @@

Uses of Medium -void -GameSparker.intializeMoto(Madness[] amadness, - Medium medium) -
motion
- - - private void GameSparker.loadbase(ContO[] conto, Medium medium, @@ -139,7 +132,7 @@

Uses of Medium
Loads all models
- + void GameSparker.loadstage(ContO[] aconto, ContO[] aconto1, @@ -152,7 +145,7 @@

Uses of Medium
Loads stage elements
- + void Wheels.make(Medium medium, Trackers trackers, diff --git a/doc/class-use/Mod.html b/doc/class-use/Mod.html index 9f10af4..4e50fd1 100644 --- a/doc/class-use/Mod.html +++ b/doc/class-use/Mod.html @@ -2,7 +2,7 @@ - + Uses of Class Mod diff --git a/doc/class-use/ModInstrument.html b/doc/class-use/ModInstrument.html index 44f800a..6db2710 100644 --- a/doc/class-use/ModInstrument.html +++ b/doc/class-use/ModInstrument.html @@ -2,7 +2,7 @@ - + Uses of Class ModInstrument diff --git a/doc/class-use/ModSlayer.html b/doc/class-use/ModSlayer.html index 3eaf4f3..ff5b555 100644 --- a/doc/class-use/ModSlayer.html +++ b/doc/class-use/ModSlayer.html @@ -2,7 +2,7 @@ - + Uses of Class ModSlayer diff --git a/doc/class-use/ModTrackInfo.html b/doc/class-use/ModTrackInfo.html index 14651f1..46f0513 100644 --- a/doc/class-use/ModTrackInfo.html +++ b/doc/class-use/ModTrackInfo.html @@ -2,7 +2,7 @@ - + Uses of Class ModTrackInfo diff --git a/doc/class-use/Plane.html b/doc/class-use/Plane.html index fb5c81e..9bf3811 100644 --- a/doc/class-use/Plane.html +++ b/doc/class-use/Plane.html @@ -2,7 +2,7 @@ - + Uses of Class Plane diff --git a/doc/class-use/RadicalMath.html b/doc/class-use/RadicalMath.html index a984ad8..e1ebb96 100644 --- a/doc/class-use/RadicalMath.html +++ b/doc/class-use/RadicalMath.html @@ -2,7 +2,7 @@ - + Uses of Class RadicalMath diff --git a/doc/class-use/RadicalMod.html b/doc/class-use/RadicalMod.html index ceab494..5ebbc36 100644 --- a/doc/class-use/RadicalMod.html +++ b/doc/class-use/RadicalMod.html @@ -2,7 +2,7 @@ - + Uses of Class RadicalMod diff --git a/doc/class-use/Record.html b/doc/class-use/Record.html index c3c4688..86d1069 100644 --- a/doc/class-use/Record.html +++ b/doc/class-use/Record.html @@ -2,7 +2,7 @@ - + Uses of Class Record diff --git a/doc/class-use/RunApp.html b/doc/class-use/RunApp.html index dd2547c..8d9c561 100644 --- a/doc/class-use/RunApp.html +++ b/doc/class-use/RunApp.html @@ -2,7 +2,7 @@ - + Uses of Class RunApp diff --git a/doc/class-use/SuperClip.html b/doc/class-use/SuperClip.html index ec7edc6..174535d 100644 --- a/doc/class-use/SuperClip.html +++ b/doc/class-use/SuperClip.html @@ -2,7 +2,7 @@ - + Uses of Class SuperClip diff --git a/doc/class-use/SuperStream.html b/doc/class-use/SuperStream.html index 5903585..200a64c 100644 --- a/doc/class-use/SuperStream.html +++ b/doc/class-use/SuperStream.html @@ -2,7 +2,7 @@ - + Uses of Class SuperStream diff --git a/doc/class-use/Trackers.html b/doc/class-use/Trackers.html index d99bb78..3889f95 100644 --- a/doc/class-use/Trackers.html +++ b/doc/class-use/Trackers.html @@ -2,7 +2,7 @@ - + Uses of Class Trackers diff --git a/doc/class-use/UlawUtils.html b/doc/class-use/UlawUtils.html index 2870456..ae2bd66 100644 --- a/doc/class-use/UlawUtils.html +++ b/doc/class-use/UlawUtils.html @@ -2,7 +2,7 @@ - + Uses of Class UlawUtils diff --git a/doc/class-use/Utility.html b/doc/class-use/Utility.html index 668998c..c419d45 100644 --- a/doc/class-use/Utility.html +++ b/doc/class-use/Utility.html @@ -2,7 +2,7 @@ - + Uses of Class Utility diff --git a/doc/class-use/Wheels.html b/doc/class-use/Wheels.html index 61b0eea..ae847ad 100644 --- a/doc/class-use/Wheels.html +++ b/doc/class-use/Wheels.html @@ -2,7 +2,7 @@ - + Uses of Class Wheels diff --git a/doc/class-use/xtGraphics.html b/doc/class-use/xtGraphics.html index bcf7a3c..ab92ff1 100644 --- a/doc/class-use/xtGraphics.html +++ b/doc/class-use/xtGraphics.html @@ -2,7 +2,7 @@ - + Uses of Class xtGraphics diff --git a/doc/constant-values.html b/doc/constant-values.html index d571b0e..27ab164 100644 --- a/doc/constant-values.html +++ b/doc/constant-values.html @@ -2,7 +2,7 @@ - + Constant Field Values diff --git a/doc/deprecated-list.html b/doc/deprecated-list.html index 3e1497e..c4213d5 100644 --- a/doc/deprecated-list.html +++ b/doc/deprecated-list.html @@ -2,7 +2,7 @@ - + Deprecated List diff --git a/doc/help-doc.html b/doc/help-doc.html index 7018c7a..66d920a 100644 --- a/doc/help-doc.html +++ b/doc/help-doc.html @@ -2,7 +2,7 @@ - + API Help diff --git a/doc/index-files/index-1.html b/doc/index-files/index-1.html index ffc9da0..e8505a9 100644 --- a/doc/index-files/index-1.html +++ b/doc/index-files/index-1.html @@ -2,7 +2,7 @@ - + A-Index diff --git a/doc/index-files/index-10.html b/doc/index-files/index-10.html index 86b1a21..310b73f 100644 --- a/doc/index-files/index-10.html +++ b/doc/index-files/index-10.html @@ -2,7 +2,7 @@ - + K-Index diff --git a/doc/index-files/index-11.html b/doc/index-files/index-11.html index 6da810e..a038a91 100644 --- a/doc/index-files/index-11.html +++ b/doc/index-files/index-11.html @@ -2,7 +2,7 @@ - + L-Index diff --git a/doc/index-files/index-12.html b/doc/index-files/index-12.html index 76ee802..311cb98 100644 --- a/doc/index-files/index-12.html +++ b/doc/index-files/index-12.html @@ -2,7 +2,7 @@ - + M-Index diff --git a/doc/index-files/index-13.html b/doc/index-files/index-13.html index d9eddcd..05d0e0f 100644 --- a/doc/index-files/index-13.html +++ b/doc/index-files/index-13.html @@ -2,7 +2,7 @@ - + N-Index diff --git a/doc/index-files/index-14.html b/doc/index-files/index-14.html index 9a487b3..e217526 100644 --- a/doc/index-files/index-14.html +++ b/doc/index-files/index-14.html @@ -2,7 +2,7 @@ - + O-Index diff --git a/doc/index-files/index-15.html b/doc/index-files/index-15.html index 8039a6b..a5082ba 100644 --- a/doc/index-files/index-15.html +++ b/doc/index-files/index-15.html @@ -2,7 +2,7 @@ - + P-Index diff --git a/doc/index-files/index-16.html b/doc/index-files/index-16.html index 6403eac..eb05edb 100644 --- a/doc/index-files/index-16.html +++ b/doc/index-files/index-16.html @@ -2,7 +2,7 @@ - + R-Index diff --git a/doc/index-files/index-17.html b/doc/index-files/index-17.html index b5d64a1..5efb3c3 100644 --- a/doc/index-files/index-17.html +++ b/doc/index-files/index-17.html @@ -2,7 +2,7 @@ - + S-Index diff --git a/doc/index-files/index-18.html b/doc/index-files/index-18.html index e11c342..58adb84 100644 --- a/doc/index-files/index-18.html +++ b/doc/index-files/index-18.html @@ -2,7 +2,7 @@ - + T-Index diff --git a/doc/index-files/index-19.html b/doc/index-files/index-19.html index 753fe98..18d4b74 100644 --- a/doc/index-files/index-19.html +++ b/doc/index-files/index-19.html @@ -2,7 +2,7 @@ - + U-Index diff --git a/doc/index-files/index-2.html b/doc/index-files/index-2.html index cc4aa10..35c5279 100644 --- a/doc/index-files/index-2.html +++ b/doc/index-files/index-2.html @@ -2,7 +2,7 @@ - + B-Index diff --git a/doc/index-files/index-20.html b/doc/index-files/index-20.html index 855d5eb..ff24c93 100644 --- a/doc/index-files/index-20.html +++ b/doc/index-files/index-20.html @@ -2,7 +2,7 @@ - + V-Index diff --git a/doc/index-files/index-21.html b/doc/index-files/index-21.html index 9e95a2f..5ddab40 100644 --- a/doc/index-files/index-21.html +++ b/doc/index-files/index-21.html @@ -2,7 +2,7 @@ - + W-Index diff --git a/doc/index-files/index-22.html b/doc/index-files/index-22.html index dbe12ff..a7843e7 100644 --- a/doc/index-files/index-22.html +++ b/doc/index-files/index-22.html @@ -2,7 +2,7 @@ - + X-Index diff --git a/doc/index-files/index-23.html b/doc/index-files/index-23.html index da34296..971d588 100644 --- a/doc/index-files/index-23.html +++ b/doc/index-files/index-23.html @@ -2,7 +2,7 @@ - + Y-Index diff --git a/doc/index-files/index-24.html b/doc/index-files/index-24.html index 8194a2b..f96753f 100644 --- a/doc/index-files/index-24.html +++ b/doc/index-files/index-24.html @@ -2,7 +2,7 @@ - + Z-Index diff --git a/doc/index-files/index-3.html b/doc/index-files/index-3.html index 8317d2b..747e89a 100644 --- a/doc/index-files/index-3.html +++ b/doc/index-files/index-3.html @@ -2,7 +2,7 @@ - + C-Index diff --git a/doc/index-files/index-4.html b/doc/index-files/index-4.html index cea0b72..c1c1224 100644 --- a/doc/index-files/index-4.html +++ b/doc/index-files/index-4.html @@ -2,7 +2,7 @@ - + D-Index diff --git a/doc/index-files/index-5.html b/doc/index-files/index-5.html index 51c0c59..03cdfb0 100644 --- a/doc/index-files/index-5.html +++ b/doc/index-files/index-5.html @@ -2,7 +2,7 @@ - + E-Index diff --git a/doc/index-files/index-6.html b/doc/index-files/index-6.html index 7378d80..80b923e 100644 --- a/doc/index-files/index-6.html +++ b/doc/index-files/index-6.html @@ -2,7 +2,7 @@ - + F-Index diff --git a/doc/index-files/index-7.html b/doc/index-files/index-7.html index cfe7953..6a5223c 100644 --- a/doc/index-files/index-7.html +++ b/doc/index-files/index-7.html @@ -2,7 +2,7 @@ - + G-Index diff --git a/doc/index-files/index-8.html b/doc/index-files/index-8.html index a35d030..bca6b16 100644 --- a/doc/index-files/index-8.html +++ b/doc/index-files/index-8.html @@ -2,7 +2,7 @@ - + H-Index diff --git a/doc/index-files/index-9.html b/doc/index-files/index-9.html index 8417722..dfe6b28 100644 --- a/doc/index-files/index-9.html +++ b/doc/index-files/index-9.html @@ -2,7 +2,7 @@ - + I-Index @@ -83,14 +83,14 @@

I

 
init() - Method in class GameSparker
 
+
initMoto(Madness[], int, int) - Method in class GameSparker
+
+
motion
+
inst(Control) - Method in class xtGraphics
 
insts - Variable in class Mod
 
-
intializeMoto(Madness[], Medium) - Method in class GameSparker
-
-
motion
-
intToBytes16(int[], byte[], int, int) - Static method in class ModSlayer
 
isActive() - Method in class DesktopStub
diff --git a/doc/index.html b/doc/index.html index 0ff93b8..9b38edf 100644 --- a/doc/index.html +++ b/doc/index.html @@ -2,7 +2,7 @@ - + Generated Documentation (Untitled) diff --git a/doc/package-tree.html b/doc/package-tree.html index a105be7..b91506f 100644 --- a/doc/package-tree.html +++ b/doc/package-tree.html @@ -2,7 +2,7 @@ - + Class Hierarchy diff --git a/doc/package-use.html b/doc/package-use.html index 04bfe0b..b4dd9a4 100644 --- a/doc/package-use.html +++ b/doc/package-use.html @@ -2,7 +2,7 @@ - + Uses of Package diff --git a/doc/serialized-form.html b/doc/serialized-form.html index bd65801..f4fadc5 100644 --- a/doc/serialized-form.html +++ b/doc/serialized-form.html @@ -2,7 +2,7 @@ - + Serialized Form diff --git a/doc/xtGraphics.html b/doc/xtGraphics.html index 4bb1779..a91d0e5 100644 --- a/doc/xtGraphics.html +++ b/doc/xtGraphics.html @@ -2,7 +2,7 @@ - + xtGraphics diff --git a/madness.jar b/madness.jar index 730f910..7356a0d 100644 Binary files a/madness.jar and b/madness.jar differ