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 @@
- +void
intializeMoto(Madness[] amadness,
- Medium medium)
+initMoto(Madness[] amadness,
+ int shakeAmt,
+ int maxAmt)
public void intializeMoto(Madness[] amadness, - Medium medium)+
public void initMoto(Madness[] amadness, + int shakeAmt, + int maxAmt)
amadness
- madnessmedium
- mediumshakeAmt
- shake sensitivity
+ 1 normal
+ 20 maximummaxAmt
- maximum displacement of the screen while shakingvoid
intializeMoto(Madness[] amadness,
- Medium medium)
+initMoto(Madness[] amadness,
+ int shakeAmt,
+ int maxAmt)
void
intializeMoto(Madness[] amadness,
- Medium medium)
-private void
loadbase(ContO[] conto,
Medium medium,
@@ -139,7 +132,7 @@ Uses of Medium
Loads all models
void
loadstage(ContO[] aconto,
ContO[] aconto1,
@@ -152,7 +145,7 @@ Uses of Medium
Loads stage elements
void
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