Directory EffectiveOO-F07/src/eoop07/weather/

Directory Created:
2007-09-26 16:06
Total Files:
17
Deleted Files:
11
Lines of Code:
1833

[root]/EffectiveOO-F07/src/eoop07/weather

Lines of Code

EffectiveOO-F07/src/eoop07/weather/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 141 (100.0%) 10443 (100.0%) 74.0
dmann 54 (38.3%) 8604 (82.4%) 159.3
zshamsi 78 (55.3%) 1822 (17.4%) 23.3
gkavanag 8 (5.7%) 15 (0.1%) 1.8
cgiralt 1 (0.7%) 2 (0.0%) 2.0

Most Recent Commits

dmann 2007-12-08 00:11

Created a new set of clouds based on simple agents. Responds to changes in the weather forecast, follows the player, and takes care of creating and destroying cloud puffs.

361 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Cloud.java (new 101), CloudManager.java (+44 -74), Clouds.java (del), PerlinNoise.java (+7), VolCloudManager.java (new 106), VolumeClouds.java (new 103)
cgiralt 2007-12-07 22:13

*** empty log message ***

2 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Rain.java (+2 -2)
zshamsi 2007-12-07 18:17

Uncommented Rain (gasp!)
It now snows at higher altitudes

46 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Rain.java (+30 -5), RainManager.java (+16 -5)
zshamsi 2007-12-07 17:35

Changed look and feel (well not so much the feel of lag)

2 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Rain.java (+2 -3)
dmann 2007-12-07 16:47

Added code to multi-thread the creation of clouds. Updated marching cubes to run faster, included a cloud manager to manage updating and animating clouds.

173 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: CloudManager.java (new 106), Clouds.java (+64 -56), PerlinNoise.java (+3 -3)
gkavanag 2007-12-07 14:23

removed the GraphicRep.update() calls; that method should no longer be used

0 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Lightning.java (-2), Rain.java (-2), RainManager.java (-1)
zshamsi 2007-12-06 16:27

Added comments

22 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: LightManager.java (+7 -1), LightningHandler.java (+9), RainManager.java (+6)
zshamsi 2007-12-05 22:48

Added a Weather Interpreter
can dynamically change weather using 'setweather'
Also added a secret...

11 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Forecast.java (+10), LightManager.java (+1 -3)
zshamsi 2007-12-04 22:08

Added density value to rain

14 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: RainManager.java (+14 -6)
zshamsi 2007-12-02 21:16

Added comments

29 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Forecast.java (+5), LightManager.java (+5), Lightning.java (+6 -1), LightningHandler.java (+4), Rain.java (+5), RainManager.java (+4)
zshamsi 2007-12-02 20:39

Added the weather corner to World
Minor changes to Lightning
Rain now follows player

90 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Lightning.java (+24 -11), LightningHandler.java (+7 -7), Rain.java (+32 -23), RainManager.java (+27 -5)
zshamsi 2007-11-28 17:41

It now rains

28 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Forecast.java (+1 -1), Rain.java (+27 -24)
zshamsi 2007-11-27 11:06

Minor changes

7 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Rain.java (+6 -5), RenderFrameTest.java (+1 -1)
zshamsi 2007-11-26 21:48

Rewrote LightManager to fade to new light level

96 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: LightManager.java (+96 -9)
zshamsi 2007-11-26 19:32

Light Manager implemented
Added methods to renderpanel to allow setAmbientLight() and setDirectionalLight()

33 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: LightManager.java (new 29), Rain.java (+4 -6)
zshamsi 2007-11-26 16:16

Minor fixes

5 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Lightning.java (+3 -5), LightningHandler.java (+1 -1), RainManager.java (+1 -1)
zshamsi 2007-11-26 13:30

Lightning Handler is now a singleton
Added a RainManager object that should create a new rain instance on weather state change

106 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Lightning.java (+27 -5), LightningHandler.java (+19 -16), Rain.java (+29 -12), RainManager.java (new 30), RenderFrameTest.java (+1 -1)
zshamsi 2007-11-21 01:27

Added getList

11 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Forecast.java (+11 -3)
zshamsi 2007-11-20 23:38

fixed Forecast singleton

4 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Forecast.java (+3 -4), LightningHandler.java (+1 -1)
zshamsi 2007-11-20 21:35

Significant Update.
*Forecast class implemented. It is a singleton static world object that changes the weather every so updates. When the weather is changed it calls the changedState method on all objects in its list. All weather objects need to implement the Weather interface and add themselves to the forecast list by getting the Forecast instance if they wish to be informed of weather changes.
*Lightning handler updated to do the above
*Lightning now animates
*Upgraded droplet to rain

298 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Droplet.java (del), Forecast.java (+91 -5), Lightning.java (+50 -20), LightningHandler.java (+45 -8), Rain.java (new 106), RenderFrameTest.java (+6 -6)

(32 more)

Generated by StatCVS 0.3