CVS Developers: zshamsi

Login name:
zshamsi
Total Commits:
92 (11.1%)
Lines of Code:
2390 (8.4%)
Most Recent Commit:
2007-12-07 18:17

Activity by Clock Time

Activity by Hour of Day for zshamsi

Activity by Day of Week for zshamsi

Activity in Directories

Directory Changes Lines of Code Lines per Change
Totals 92 (100.0%) 2390 (100.0%) 25.9
EffectiveOO-F07/src/eoop07/weather/ 78 (84.8%) 1822 (76.2%) 23.3
EffectiveOO-F07/src/eoop07/renderer/ 1 (1.1%) 478 (20.0%) 478.0
EffectiveOO-F07/src/eoop07/scripting/ 3 (3.3%) 50 (2.1%) 16.6
EffectiveOO-F07/src/eoop07/ 9 (9.8%) 36 (1.5%) 4.0
EffectiveOO-F07/src/eoop07/geometry/ 1 (1.1%) 4 (0.2%) 4.0

Activity of zshamsi

Most Recent Commits

zshamsi 2007-12-07 18:17

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

48 lines of code changed in:

  • EffectiveOO-F07/src/eoop07: World.java (+2 -1)
  • 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)
zshamsi 2007-12-06 16:27

Added comments

28 lines of code changed in:

  • EffectiveOO-F07/src/eoop07: World.java (+1)
  • EffectiveOO-F07/src/eoop07/scripting: WeatherInterpreter.java (+5)
  • 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...

56 lines of code changed in:

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

Added density value to rain

16 lines of code changed in:

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

Added comments

31 lines of code changed in:

  • EffectiveOO-F07/src/eoop07: World.java (+2 -2)
  • 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

97 lines of code changed in:

  • EffectiveOO-F07/src/eoop07: World.java (+7 -6)
  • 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()

518 lines of code changed in:

  • EffectiveOO-F07/src/eoop07: World.java (+7)
  • EffectiveOO-F07/src/eoop07/renderer: RenderPanel.java (+478 -458)
  • 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

7 lines of code changed in:

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

Forecast instance added to world

7 lines of code changed in:

  • EffectiveOO-F07/src/eoop07: World.java (+7 -6)
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)
zshamsi 2007-11-14 17:02

No comment.

94 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Droplet.java (+20 -3), Lightning.java (+63 -27), LightningHandler.java (+11 -1)
zshamsi 2007-11-07 16:55

Fixed Lightning to not recreate the graphic rep at each update
Droplet class now drops on update

141 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Droplet.java (new 21), Lightning.java (+35 -16), LightningHandler.java (new 15), PhysicsDroplet.java (new 67), RenderFrameTest.java (+3 -3)
zshamsi 2007-11-07 15:07

*** empty log message ***

0 lines of code changed in:

  • EffectiveOO-F07/src/eoop07/weather: Droplet.java (del)

(12 more)

Generated by StatCVS 0.3