X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=test4%2FPsychlopsMain.cs;h=aafe41225b89fd66f465dc74f82bfbe5f3fa9246;hb=39cda95632f7017ff1941c8162e0dbe026f56baa;hp=f5df20f5ae8f495158ec670704cfbdcbe95205d5;hpb=9f47dcd91507b95984913358b5b313f1e304a091;p=psychlops%2Fsilverlight.git diff --git a/test4/PsychlopsMain.cs b/test4/PsychlopsMain.cs index f5df20f..aafe412 100644 --- a/test4/PsychlopsMain.cs +++ b/test4/PsychlopsMain.cs @@ -1,42 +1,234 @@ - +///+ Prefix linkto BasicCode1 +//// Lines for set up Psychlops environment +<<<<<<< HEAD using Psychlops; namespace PsychlopsSilverlight4test { public class PsychlopsMain - { + {///- Prefix linkto BasicCode1 + + + ///+ Main Routine + //// Psychlops runs at the first line of this function psychlops_main(). + public void psychlops_main() { + ///+ 0 linkto BasicCode3_1a + ////Prepare global parameters + const int maxrectnum = 200; + int rectnum = 100/*ID:rectnumber 25.0 200.0 25.0*/; + double rectsize = 5.0/*ID:dotsize 1.0 10.0 1.0*/; + Rectangle[] rect = new Rectangle[maxrectnum]; + for (int i = 0; i < maxrectnum; i++) { rect[i] = new Rectangle(); } + double[] rectcolorR = new double[maxrectnum]; + double[] rectcolorG = new double[maxrectnum]; + double[] rectcolorB = new double[maxrectnum]; + ///- 0 linkto BasicCode3_1a + + Canvas window = new Canvas(Canvas.window); + + ///+ 1 linkto BasicCode3_1a + ////Initialize + for(int i=0; i < rectnum; i++){ + ///+ 1.1 set1 + ////set positions and sizes + rect[i].set(rectsize, rectsize); //Set a size of rectangles. + rect[i].centering(); + rect[i].shift((i - 0.5 * rectnum) * rectsize* 1.5/*ID:RectHGap 1.0 3.0 0.5*/, + (i - 0.5*rectnum) * rectsize * 1.5/*ID:RectVGap 1.0 3.0 0.5*/); //Move Rectangles to initial positions + ///- 1.1 set1 + ///+ 1.2 set2 + ////set colors + rectcolorR[i]=Math.random(1.0) * 0.5/*ID: RGain 0.0 1.0 0.5*/; //Set R values. Note that "i" is converted to double-type. + rectcolorG[i]=Math.random(1.0) * 0.5/*ID: GGain 0.0 1.0 0.5*/; //Set G values. Note that "i" is converted to double-type. + rectcolorB[i]=Math.random(1.0) * 0.5/*ID: BGain 0.0 1.0 0.5*/; //Set B values. Note that "i" is converted to double-type. + ///- 1.2 set2 + } + ///- 1 linkto BasicCode3_1a + + ///+ 2 drawing + ////drawing objects + ///+ 2.1 setlocal + ////Prepare variables for movie control; + int frame = 0; + int motion_dir = 1; + double Horizontal_shift, Vertical_shift; + ///- 2.1 setlocal + + while(!Keyboard.esc.pushed()){ + window.clear(Color.black); + + if(frame % 30/*ID:Period_Position 30 240 30*/ ==0){ // motion direction will reverse at designated frames. + motion_dir *= -1; + } + + for(int i=0; i < rectnum; i++){ + ///+ 2.2 loopset1 + ////set positions and sizes + + Horizontal_shift=motion_dir * 1.0/*ID:HSpeed 0.0 5.0 1.0*/; + Vertical_shift=motion_dir * 0.0/*ID:VSpeed 0.0 5.0 1.0*/; + + rect[i].resize(rectsize, rectsize); //Resize rectangles. + rect[i].shift(Horizontal_shift, Vertical_shift); + ///- 2.2 loopset1 + + ///+ 2.3 loopset2 + ////set colors + rectcolorR[i]=Math.random(1.0)* 0.5/*ID:RGain 0.0 1.0 0.5*/; //Set R values. Note that "i" is converted to double-type. + rectcolorG[i]=Math.random(1.0)* 0.5/*ID:GGain 0.0 1.0 0.5*/; //Set G values. Note that "i" is converted to double-type. + rectcolorB[i]=Math.random(1.0)* 0.5/*ID:BGain 0.0 1.0 0.5*/; //Set B values. Note that "i" is converted to double-type. + ///- 2.3 loopset2 + + } + + ///+ 2.4 linkto BasicCode3_1a + for(int i=0; i < rectnum; i++){ + rect[i].draw(new Color(rectcolorR[i], rectcolorG[i], rectcolorB[i])); //draw objects by designated colors. + } + window.flip(); + ///- 2.4 linkto BasicCode3_1a + + frame++; + } + ///- 2 drawing - Psychlops.Widgets.Slider rect_size; - Psychlops.Widgets.Slider rect_lum; - Psychlops.Widgets.Slider bg_lum; +} + ///- Main Routine - void RectLuminance() + } + +} + + +/* +======= +>>>>>>> 06a470a0e79a283223a73d8c5f6e43ef76174d97 +using Psychlops; + +namespace PsychlopsSilverlightApp +{ + + public class PsychlopsMain + {///- Prefix linkto BasicCode1 + + + ///+ Main Routine + //// Psychlops runs at the first line of this function psychlops_main(). + public void psychlops_main() { - Canvas display = new Canvas(Canvas.window); - Interval rng = new Interval(); - rect_size = new Psychlops.Widgets.Slider("Rect Size", 1 < rng < 500, 10.0); - rect_lum = new Psychlops.Widgets.Slider("Rect Luminance", 0.0 <= rng <= 1.0, 0.1); - bg_lum = new Psychlops.Widgets.Slider("BG Luminance", 0.0 <= rng <= 1.0, 0.1); - Ellipse drawee = new Ellipse(100, 100); - display.showFPS(); - display.watchFPS(); + ///+ 0 linkto BasicCode3_1a + ////Prepare global parameters + int maxrectnum = 200; + int rectnum = 100; + double rectsize = 5.0; + Rectangle[] rect = StaticFunctions.NewArray(maxrectnum); + double[] rectcolorR = new double[maxrectnum]; + double[] rectcolorG = new double[maxrectnum]; + double[] rectcolorB = new double[maxrectnum]; + ///- 0 linkto BasicCode3_1a + + Canvas window = new Canvas(Canvas.window); + var img = new Image("logo.png"); + + + ///+ 1 linkto BasicCode3_1a + ////Initialize + for (int i = 0; i < rectnum; i++) + { + ///+ 1.1 set1 + ////set positions and sizes + rect[i].set(rectsize, rectsize); //Set a size of rectangles. + rect[i].centering(); + rect[i].shift((i - 0.5 * rectnum) * rectsize * 1.5, + (i - 0.5 * rectnum) * rectsize * 1.5); //Move Rectangles to initial positions + ///- 1.1 set1 + ///+ 1.2 set2 + ////set colors + rectcolorR[i] = Math.random(1.0) * 0.5; //Set R values. Note that "i" is converted to double-type. + rectcolorG[i] = Math.random(1.0) * 0.5; //Set G values. Note that "i" is converted to double-type. + rectcolorB[i] = Math.random(1.0) * 0.5; //Set B values. Note that "i" is converted to double-type. + ///- 1.2 set2 + } + ///- 1 linkto BasicCode3_1a + + ///+ 2 drawing + ////drawing objects + ///+ 2.1 linkto BasicCode3_2a + ////Prepare variables for movie control; + int frame = 0; + int motion_dir = 1; + double Horizontal_shift, Vertical_shift; + ///- 2.1 linkto BasicCode3_2a + + while (!Keyboard.esc.pushed()) + { + window.clear(Color.black); + for (int i = 0; i < rectnum; i++) + { + ///+ 2.2 loopset1 + ////set positions and sizes + + Horizontal_shift = Math.sin(2 * Math.PI * ((double)frame / 30.0)) * motion_dir * 100.0; //Calculate horizontal displacement from the center. + Vertical_shift = Math.sin(2 * Math.PI * ((double)frame / 30.0)) * motion_dir * 0.0;//Calculate vertical displacement from the center. + rect[i].resize(rectsize, rectsize); //Resize rectangles. + rect[i].centering(); //Rectangles are moved to the center... + rect[i].shift(Horizontal_shift + (i - 0.5 * rectnum) * rectsize * 1.5, + Vertical_shift + (i - 0.5 * rectnum) * rectsize * 1.5); //and then move to designated positions + ///- 2.2 loopset1 + + ///+ 2.3 linkto BasicCode3_2a + ////set colors + rectcolorR[i] = Math.random(1.0) * 0.5; //Set R values. Note that "i" is converted to double-type. + rectcolorG[i] = Math.random(1.0) * 0.5; //Set G values. Note that "i" is converted to double-type. + rectcolorB[i] = Math.random(1.0) * 0.5; //Set B values. Note that "i" is converted to double-type. + ///- 2.3 linkto BasicCode3_2a + + } + ///+ 2.4 linkto BasicCode3_1a + for (int i = 0; i < rectnum; i++) + { + rect[i].draw(new Color(rectcolorR[i], rectcolorG[i], rectcolorB[i])); //draw objects by designated colors. + } + window.flip(); + ///- 2.4 linkto BasicCode3_1a + frame++; + } + ///- 2 drawing + + } + ///- Main Routine - Rectangle rect = new Rectangle(rect_size, rect_size); - rect.centering(); + } + +} + + + + + +/* +using Psychlops; + +namespace PsychlopsSilverlight4test +{ + + public class PsychlopsMain + { + void RectLuminance() + { + Canvas display = new Canvas(Canvas.window); + Psychlops.Solver.BinomialLikelihood.showWindow(Math.cumulativeNormalDistibution); + Letters le = new Letters("Reload to restart"); + le.fill = Color.black; + le.align = Letters.HorizontalAlign.center; - Clock before = new Clock(), after = new Clock(); while (!Keyboard.esc.pushed()) { - Display.clear(bg_lum); - rect.resize(rect_size, rect_size).draw(rect_lum); - after.update(); - display.var((after - before).at_msec(), 100, 100, Color.green); - display.var((after - before).at_msec(), 100, 200, Color.green); - drawee.centering().shift(Math.random(100), 0); - drawee.draw(Color.black); + Display.clear(Color.white); + le.centering().shift(-200,-10).draw(); Display.flip(); } @@ -52,8 +244,9 @@ namespace PsychlopsSilverlight4test } } +*/ - +*/