kellex

Error-SimpleGame

Jun 17th, 2014
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 15.04 KB | None | 0 0
  1. SimpleGame.java:21: package javax.media.j3d does not exist
  2. import javax.media.j3d.Alpha;
  3.                       ^
  4. SimpleGame.java:22: package javax.media.j3d does not exist
  5. import javax.media.j3d.AmbientLight;
  6.                       ^
  7. SimpleGame.java:23: package javax.media.j3d does not exist
  8. import javax.media.j3d.Appearance;
  9.                       ^
  10. SimpleGame.java:24: package javax.media.j3d does not exist
  11. import javax.media.j3d.Behavior;
  12.                       ^
  13. SimpleGame.java:25: package javax.media.j3d does not exist
  14. import javax.media.j3d.BoundingSphere;
  15.                       ^
  16. SimpleGame.java:26: package javax.media.j3d does not exist
  17. import javax.media.j3d.Bounds;
  18.                       ^
  19. SimpleGame.java:27: package javax.media.j3d does not exist
  20. import javax.media.j3d.BranchGroup;
  21.                       ^
  22. SimpleGame.java:28: package javax.media.j3d does not exist
  23. import javax.media.j3d.Canvas3D;
  24.                       ^
  25. SimpleGame.java:29: package javax.media.j3d does not exist
  26. import javax.media.j3d.DirectionalLight;
  27.                       ^
  28. SimpleGame.java:30: package javax.media.j3d does not exist
  29. import javax.media.j3d.Locale;
  30.                       ^
  31. SimpleGame.java:31: package javax.media.j3d does not exist
  32. import javax.media.j3d.Material;
  33.                       ^
  34. SimpleGame.java:32: package javax.media.j3d does not exist
  35. import javax.media.j3d.Node;
  36.                       ^
  37. SimpleGame.java:33: package javax.media.j3d does not exist
  38. import javax.media.j3d.PhysicalBody;
  39.                       ^
  40. SimpleGame.java:34: package javax.media.j3d does not exist
  41. import javax.media.j3d.PhysicalEnvironment;
  42.                       ^
  43. SimpleGame.java:35: package javax.media.j3d does not exist
  44. import javax.media.j3d.PositionInterpolator;
  45.                       ^
  46. SimpleGame.java:36: package javax.media.j3d does not exist
  47. import javax.media.j3d.Switch;
  48.                       ^
  49. SimpleGame.java:37: package javax.media.j3d does not exist
  50. import javax.media.j3d.Transform3D;
  51.                       ^
  52. SimpleGame.java:38: package javax.media.j3d does not exist
  53. import javax.media.j3d.TransformGroup;
  54.                       ^
  55. SimpleGame.java:39: package javax.media.j3d does not exist
  56. import javax.media.j3d.View;
  57.                       ^
  58. SimpleGame.java:40: package javax.media.j3d does not exist
  59. import javax.media.j3d.ViewPlatform;
  60.                       ^
  61. SimpleGame.java:41: package javax.media.j3d does not exist
  62. import javax.media.j3d.VirtualUniverse;
  63.                       ^
  64. SimpleGame.java:42: package javax.media.j3d does not exist
  65. import javax.media.j3d.WakeupCriterion;
  66.                       ^
  67. SimpleGame.java:43: package javax.media.j3d does not exist
  68. import javax.media.j3d.WakeupOnAWTEvent;
  69.                       ^
  70. SimpleGame.java:44: package javax.media.j3d does not exist
  71. import javax.media.j3d.WakeupOnCollisionEntry;
  72.                       ^
  73. SimpleGame.java:45: package javax.media.j3d does not exist
  74. import javax.media.j3d.WakeupOnElapsedTime;
  75.                       ^
  76. SimpleGame.java:46: package javax.media.j3d does not exist
  77. import javax.media.j3d.WakeupOr;
  78.                       ^
  79. SimpleGame.java:47: package javax.vecmath does not exist
  80. import javax.vecmath.Color3f;
  81.                     ^
  82. SimpleGame.java:48: package javax.vecmath does not exist
  83. import javax.vecmath.Matrix3d;
  84.                     ^
  85. SimpleGame.java:49: package javax.vecmath does not exist
  86. import javax.vecmath.Point3d;
  87.                     ^
  88. SimpleGame.java:50: package javax.vecmath does not exist
  89. import javax.vecmath.Vector3d;
  90.                     ^
  91. SimpleGame.java:51: package javax.vecmath does not exist
  92. import javax.vecmath.Vector3f;
  93.                     ^
  94. SimpleGame.java:53: package com.sun.j3d.loaders does not exist
  95. import com.sun.j3d.loaders.Scene;
  96.                           ^
  97. SimpleGame.java:54: package com.sun.j3d.loaders.objectfile does not exist
  98. import com.sun.j3d.loaders.objectfile.ObjectFile;
  99.                                      ^
  100. SimpleGame.java:55: package com.sun.j3d.utils.geometry does not exist
  101. import com.sun.j3d.utils.geometry.Box;
  102.                                  ^
  103. SimpleGame.java:56: package com.sun.j3d.utils.geometry does not exist
  104. import com.sun.j3d.utils.geometry.Cylinder;
  105.                                  ^
  106. SimpleGame.java:57: package com.sun.j3d.utils.geometry does not exist
  107. import com.sun.j3d.utils.geometry.Sphere;
  108.                                  ^
  109. SimpleGame.java:73: cannot find symbol
  110. symbol  : class Canvas3D
  111. location: class SimpleGame
  112.   protected Canvas3D myCanvas3D = new Canvas3D(null);
  113.             ^
  114. SimpleGame.java:77: cannot find symbol
  115. symbol  : class BoundingSphere
  116. location: class SimpleGame
  117.   protected BoundingSphere bounds = new BoundingSphere(new Point3d(0.0, 0.0,
  118.             ^
  119. SimpleGame.java:81: cannot find symbol
  120. symbol  : class Switch
  121. location: class SimpleGame
  122.   Switch duckSwitch;
  123.   ^
  124. SimpleGame.java:84: cannot find symbol
  125. symbol  : class Alpha
  126. location: class SimpleGame
  127.   Alpha duckAlpha;
  128.   ^
  129. SimpleGame.java:87: cannot find symbol
  130. symbol  : class Alpha
  131. location: class SimpleGame
  132.   Alpha ballAlpha;
  133.   ^
  134. SimpleGame.java:90: cannot find symbol
  135. symbol  : class PositionInterpolator
  136. location: class SimpleGame
  137.   PositionInterpolator moveBall;
  138.   ^
  139. SimpleGame.java:93: cannot find symbol
  140. symbol  : class TransformGroup
  141. location: class SimpleGame
  142.   TransformGroup gunXfmGrp = new TransformGroup();
  143.   ^
  144. SimpleGame.java:100: cannot find symbol
  145. symbol  : class Canvas3D
  146. location: class SimpleGame
  147.   protected BranchGroup buildViewBranch(Canvas3D c) {
  148.                                         ^
  149. SimpleGame.java:100: cannot find symbol
  150. symbol  : class BranchGroup
  151. location: class SimpleGame
  152.   protected BranchGroup buildViewBranch(Canvas3D c) {
  153.             ^
  154. SimpleGame.java:126: cannot find symbol
  155. symbol  : class BranchGroup
  156. location: class SimpleGame
  157.   protected void addLights(BranchGroup b) {
  158.                            ^
  159. SimpleGame.java:143: cannot find symbol
  160. symbol  : class BranchGroup
  161. location: class SimpleGame
  162.   protected BranchGroup buildGun() {
  163.             ^
  164. SimpleGame.java:181: cannot find symbol
  165. symbol  : class BranchGroup
  166. location: class SimpleGame
  167.   protected BranchGroup buildDuck() {
  168.             ^
  169. SimpleGame.java:230: cannot find symbol
  170. symbol  : class BranchGroup
  171. location: class SimpleGame
  172.   protected BranchGroup buildBall() {
  173.             ^
  174. SimpleGame.java:270: cannot find symbol
  175. symbol  : class BranchGroup
  176. location: class SimpleGame
  177.   protected BranchGroup buildContentBranch() {
  178.             ^
  179. SimpleGame.java:323: cannot find symbol
  180. symbol: class Behavior
  181. class DuckBehaviour extends Behavior {
  182.                             ^
  183. SimpleGame.java:325: cannot find symbol
  184. symbol  : class Node
  185. location: class DuckBehaviour
  186.   protected Node collidingShape;
  187.             ^
  188. SimpleGame.java:328: cannot find symbol
  189. symbol  : class WakeupCriterion
  190. location: class DuckBehaviour
  191.   protected WakeupCriterion[] theCriteria;
  192.             ^
  193. SimpleGame.java:331: cannot find symbol
  194. symbol  : class WakeupOr
  195. location: class DuckBehaviour
  196.   protected WakeupOr oredCriteria;
  197.             ^
  198. SimpleGame.java:334: cannot find symbol
  199. symbol  : class Switch
  200. location: class DuckBehaviour
  201.   protected Switch theSwitch;
  202.             ^
  203. SimpleGame.java:337: cannot find symbol
  204. symbol  : class Alpha
  205. location: class DuckBehaviour
  206.   protected Alpha theTargetAlpha;
  207.             ^
  208. SimpleGame.java:354: cannot find symbol
  209. symbol  : class Node
  210. location: class DuckBehaviour
  211.   public DuckBehaviour(Node theShape, Switch sw, Alpha a1, Bounds theBounds) {
  212.                        ^
  213. SimpleGame.java:354: cannot find symbol
  214. symbol  : class Switch
  215. location: class DuckBehaviour
  216.   public DuckBehaviour(Node theShape, Switch sw, Alpha a1, Bounds theBounds) {
  217.                                       ^
  218. SimpleGame.java:354: cannot find symbol
  219. symbol  : class Alpha
  220. location: class DuckBehaviour
  221.   public DuckBehaviour(Node theShape, Switch sw, Alpha a1, Bounds theBounds) {
  222.                                                  ^
  223. SimpleGame.java:354: cannot find symbol
  224. symbol  : class Bounds
  225. location: class DuckBehaviour
  226.   public DuckBehaviour(Node theShape, Switch sw, Alpha a1, Bounds theBounds) {
  227.                                                            ^
  228. SimpleGame.java:417: cannot find symbol
  229. symbol: class Behavior
  230. class GunBehaviour extends Behavior {
  231.                            ^
  232. SimpleGame.java:419: cannot find symbol
  233. symbol  : class WakeupCriterion
  234. location: class GunBehaviour
  235.   protected WakeupCriterion theCriterion;
  236.             ^
  237. SimpleGame.java:422: cannot find symbol
  238. symbol  : class Alpha
  239. location: class GunBehaviour
  240.   protected Alpha theGunAlpha;
  241.             ^
  242. SimpleGame.java:425: cannot find symbol
  243. symbol  : class PositionInterpolator
  244. location: class GunBehaviour
  245.   protected PositionInterpolator theInterpolator;
  246.             ^
  247. SimpleGame.java:431: cannot find symbol
  248. symbol  : class TransformGroup
  249. location: class GunBehaviour
  250.   protected TransformGroup aimXfmGrp;
  251.             ^
  252. SimpleGame.java:434: cannot find symbol
  253. symbol  : class Matrix3d
  254. location: class GunBehaviour
  255.   protected Matrix3d aimShotMat = new Matrix3d();
  256.             ^
  257. SimpleGame.java:437: cannot find symbol
  258. symbol  : class Matrix3d
  259. location: class GunBehaviour
  260.   protected Matrix3d aimGunMat = new Matrix3d();
  261.             ^
  262. SimpleGame.java:440: cannot find symbol
  263. symbol  : class Transform3D
  264. location: class GunBehaviour
  265.   protected Transform3D aimShotXfm = new Transform3D();
  266.             ^
  267. SimpleGame.java:443: cannot find symbol
  268. symbol  : class Transform3D
  269. location: class GunBehaviour
  270.   protected Transform3D aimGunXfm = new Transform3D();
  271.             ^
  272. SimpleGame.java:457: cannot find symbol
  273. symbol  : class Alpha
  274. location: class GunBehaviour
  275.   public GunBehaviour(Alpha a1, PositionInterpolator pi,
  276.                       ^
  277. SimpleGame.java:457: cannot find symbol
  278. symbol  : class PositionInterpolator
  279. location: class GunBehaviour
  280.   public GunBehaviour(Alpha a1, PositionInterpolator pi,
  281.                                 ^
  282. SimpleGame.java:458: cannot find symbol
  283. symbol  : class TransformGroup
  284. location: class GunBehaviour
  285.       TransformGroup gunRotGrp, Bounds theBounds) {
  286.       ^
  287. SimpleGame.java:458: cannot find symbol
  288. symbol  : class Bounds
  289. location: class GunBehaviour
  290.       TransformGroup gunRotGrp, Bounds theBounds) {
  291.                                 ^
  292. SimpleGame.java:73: cannot find symbol
  293. symbol  : class Canvas3D
  294. location: class SimpleGame
  295.   protected Canvas3D myCanvas3D = new Canvas3D(null);
  296.                                       ^
  297. SimpleGame.java:77: cannot find symbol
  298. symbol  : class BoundingSphere
  299. location: class SimpleGame
  300.   protected BoundingSphere bounds = new BoundingSphere(new Point3d(0.0, 0.0,
  301.                                         ^
  302. SimpleGame.java:77: cannot find symbol
  303. symbol  : class Point3d
  304. location: class SimpleGame
  305.   protected BoundingSphere bounds = new BoundingSphere(new Point3d(0.0, 0.0,
  306.                                                            ^
  307. SimpleGame.java:93: cannot find symbol
  308. symbol  : class TransformGroup
  309. location: class SimpleGame
  310.   TransformGroup gunXfmGrp = new TransformGroup();
  311.                                  ^
  312. SimpleGame.java:101: cannot find symbol
  313. symbol  : class BranchGroup
  314. location: class SimpleGame
  315.     BranchGroup viewBranch = new BranchGroup();
  316.     ^
  317. SimpleGame.java:101: cannot find symbol
  318. symbol  : class BranchGroup
  319. location: class SimpleGame
  320.     BranchGroup viewBranch = new BranchGroup();
  321.                                  ^
  322. SimpleGame.java:102: cannot find symbol
  323. symbol  : class Transform3D
  324. location: class SimpleGame
  325.     Transform3D viewXfm = new Transform3D();
  326.     ^
  327. SimpleGame.java:102: cannot find symbol
  328. symbol  : class Transform3D
  329. location: class SimpleGame
  330.     Transform3D viewXfm = new Transform3D();
  331.                               ^
  332. SimpleGame.java:103: cannot find symbol
  333. symbol  : class Matrix3d
  334. location: class SimpleGame
  335.     Matrix3d viewTilt = new Matrix3d();
  336.     ^
  337. SimpleGame.java:103: cannot find symbol
  338. symbol  : class Matrix3d
  339. location: class SimpleGame
  340.     Matrix3d viewTilt = new Matrix3d();
  341.                             ^
  342. SimpleGame.java:105: cannot find symbol
  343. symbol  : class Vector3d
  344. location: class SimpleGame
  345.     viewXfm.set(viewTilt, new Vector3d(0.0, 10.0, 10.0), 1.0);
  346.                               ^
  347. SimpleGame.java:106: cannot find symbol
  348. symbol  : class TransformGroup
  349. location: class SimpleGame
  350.     TransformGroup viewXfmGroup = new TransformGroup(viewXfm);
  351.     ^
  352. SimpleGame.java:106: cannot find symbol
  353. symbol  : class TransformGroup
  354. location: class SimpleGame
  355.     TransformGroup viewXfmGroup = new TransformGroup(viewXfm);
  356.                                       ^
  357. SimpleGame.java:107: cannot find symbol
  358. symbol  : class ViewPlatform
  359. location: class SimpleGame
  360.     ViewPlatform myViewPlatform = new ViewPlatform();
  361.     ^
  362. SimpleGame.java:107: cannot find symbol
  363. symbol  : class ViewPlatform
  364. location: class SimpleGame
  365.     ViewPlatform myViewPlatform = new ViewPlatform();
  366.                                       ^
  367. SimpleGame.java:108: cannot find symbol
  368. symbol  : class PhysicalBody
  369. location: class SimpleGame
  370.     PhysicalBody myBody = new PhysicalBody();
  371.     ^
  372. SimpleGame.java:108: cannot find symbol
  373. symbol  : class PhysicalBody
  374. location: class SimpleGame
  375.     PhysicalBody myBody = new PhysicalBody();
  376.                               ^
  377. SimpleGame.java:109: cannot find symbol
  378. symbol  : class PhysicalEnvironment
  379. location: class SimpleGame
  380.     PhysicalEnvironment myEnvironment = new PhysicalEnvironment();
  381.     ^
  382. SimpleGame.java:109: cannot find symbol
  383. symbol  : class PhysicalEnvironment
  384. location: class SimpleGame
  385.     PhysicalEnvironment myEnvironment = new PhysicalEnvironment();
  386.                                             ^
  387. SimpleGame.java:112: cannot find symbol
  388. symbol  : class View
  389. location: class SimpleGame
  390.     View myView = new View();
  391.     ^
  392. SimpleGame.java:112: cannot find symbol
  393. symbol  : class View
  394. location: class SimpleGame
  395.     View myView = new View();
  396.                       ^
  397. SimpleGame.java:127: cannot find symbol
  398. symbol  : class Color3f
  399. location: class SimpleGame
  400.     Color3f ambLightColour = new Color3f(0.5f, 0.5f, 0.5f);
  401.     ^
  402. SimpleGame.java:127: cannot find symbol
  403. symbol  : class Color3f
  404. location: class SimpleGame
  405.     Color3f ambLightColour = new Color3f(0.5f, 0.5f, 0.5f);
  406.                                  ^
  407. SimpleGame.java:128: cannot find symbol
  408. symbol  : class AmbientLight
  409. location: class SimpleGame
  410.     AmbientLight ambLight = new AmbientLight(ambLightColour);
  411.     ^
  412. SimpleGame.java:128: cannot find symbol
  413. symbol  : class AmbientLight
  414. location: class SimpleGame
  415.     AmbientLight ambLight = new AmbientLight(ambLightColour);
  416.                                 ^
  417. SimpleGame.java:130: cannot find symbol
  418. symbol  : class Color3f
  419. location: class SimpleGame
  420.     Color3f dirLightColour = new Color3f(1.0f, 1.0f, 1.0f);
  421.     ^
  422. SimpleGame.java:130: cannot find symbol
  423. symbol  : class Color3f
  424. location: class SimpleGame
  425.     Color3f dirLightColour = new Color3f(1.0f, 1.0f, 1.0f);
  426.                                  ^
  427. 100 errors
Advertisement
Add Comment
Please, Sign In to add comment