OSDN Git Service

OK
[psychlops/silverlight.git] / test4 / PsychlopsMain.cs
index adff3c4..ad9a4c1 100644 (file)
-using Psychlops;\r
+\r
+using Psychlops;\r
 \r
-namespace PsychlopsSilverlight4test\r
+namespace PsychlopsSilverlightApp\r
 {\r
 \r
        public class PsychlopsMain\r
        {\r
 \r
-               Canvas cnvs;\r
-               int i;\r
-               object xxx;\r
-               double x, y, z, t, p, temp, xx, yy;\r
-\r
-               //Set Target Initial Value\r
-               double TargetEcce = 100.0, TargetSize = 5.0, TargetNumber = 5, Rotate = 0.0;\r
-\r
-               //Set Background Initial Value\r
-               double DotNumber = 50, thetaSpeed = 3.0, Axis = 0.0, BGRadii = 150, BGSize = 5.0;\r
-               Psychlops.Widgets.Slider DotNumberS;\r
-\r
                public void psychlops_main()\r
                {\r
-                       //DotNumberS = new Psychlops.Widgets.Slider("test", new Interval(10, 500));\r
-                       //Independent ind = new Independent();\r
-\r
-                       cnvs = new Canvas(500, 500);\r
-\r
-                       Image img = new Image(100, 100);\r
-                       img.field(delegate(int x, int y) { return new Color(0.5 + 0.5 * Math.sin(x + y)); });\r
-                       Image img2 = new Image(100, 100);\r
-                       img2.field(delegate(int x, int y) { return new Color(0.5 + 0.5 * Math.sin(x + y)); });\r
-                       /*\r
-                       for (int x = 0; x < 20; x++)\r
-                       {\r
-                               for (int y = 0; y < 20; y++)\r
-                               {\r
-//                                     img.pix(x, y, new Color(Math.sin(x + y)));\r
-                               }\r
-                       }\r
-                        * */\r
-\r
-\r
-                       //Declare background dots and target\r
-                       Rectangle[] BGDot = new Rectangle[2048];\r
-                       for(int i=0; i<2048; i++){\r
-                               BGDot[i]=new Rectangle();\r
-                       }\r
-                       Rectangle[] Target= new Rectangle[10];\r
-                       for(int i=0; i<10; i++){\r
-                               Target[i]=new Rectangle();\r
-                       }\r
-\r
-\r
-                       //Declare Matrix to keep back ground dots' coordinate value\r
-                       double[] DotX=new double[2048];\r
-                       double[] DotY = new double[2048];\r
-\r
-\r
-                       //Set Independent variables to manipulate\r
-\r
-\r
-                       //Initialize positions of background dots\r
-                       for(int i=0; i<2048; i++){\r
-                               t=2.0*Math.PI*Math.random(1.0);\r
-                               p=2.0*Math.PI*Math.random(1.0);\r
-                               DotX[i]=t;\r
-                               DotY[i]=p;\r
-\r
-                               x=BGRadii*Math.cos(t)*Math.cos(p);\r
-                               y=BGRadii*Math.sin(t)*Math.cos(p);\r
-                               BGDot[i].set(BGSize, BGSize);\r
-                               BGDot[i].centering().shift(x,y);\r
-                       }\r
+                       Canvas window = new Canvas(300,300);\r
 \r
-                       //Initialize positions of targets\r
-                       for(int i=0; i<10; i++)Target[i].set(TargetSize, TargetSize);\r
+                       Rectangle figure = new Rectangle();\r
+                       figure.set(100, 100);\r
+                       figure.fill = new Color(1, 1, 1);\r
+                       figure.centering().shift(0, 0);\r
 \r
-                       double COS, SIN;\r
-                       DotNumber = 100;\r
-                       //Main stimulus loop\r
-                       while(true){\r
-                               //Clear the main window\r
-                               cnvs.clear(Color.green);\r
-\r
-\r
-                               temp=Axis/360*2*Math.PI;\r
-                               COS=Math.cos(temp);\r
-                               SIN=Math.sin(temp);\r
-\r
-                               //Calculate positions of background dots and set them\r
-                               for(int i=0; i<DotNumber; i++){\r
-                                       //Calculate in polar coordinate\r
-                                       t=DotX[i]+2.0*Math.PI*thetaSpeed/360.0;\r
-                                       p=DotY[i];\r
-\r
-                                       //Save current position\r
-                                       DotX[i]=t;\r
-\r
-                                       //Convert to Decartes coordinate\r
-                                       x=BGRadii*Math.cos(t)*Math.cos(p);\r
-                                       y=BGRadii*Math.sin(t)*Math.cos(p);\r
-                                       z=BGRadii*Math.sin(p);\r
-                                       xx=x;\r
-                                       yy=SIN*y+COS*z;\r
-\r
-                                       //Set Dotsize and Draw them\r
-                                       BGDot[i].set(BGSize, BGSize);\r
-                                       BGDot[i].centering().shift(xx,yy);\r
-                                       BGDot[i].draw( Color.blue);\r
-                               }\r
-\r
-                               //Calculate positions of targets and set them\r
-                               temp=Rotate*2*Math.PI/360.0;\r
-                               cnvs.msg(TargetNumber.ToString(), 0, 30);\r
-                               for (int i = 0; i < 5; i++)\r
-                               {\r
-                                       cnvs.msg(i.ToString(), 50+50*i, 30);\r
-                                       t = 2.0 * Math.PI/TargetNumber;\r
-                                       x = 10.0 * i;//TargetEcce*Math.cos(i*t+temp);\r
-                                       y = 10.0 * i;//TargetEcce*Math.sin(i*t+temp);\r
-                                       Target[i].centering().shift(x,y);\r
-                                       Target[i].fill = Color.yellow;\r
-                                       Target[i].draw();\r
-                               }\r
-\r
-                               img.centering().draw();\r
-                               img2.centering().draw();\r
-                               //Reflect drawing at the next frame;\r
-                               cnvs.flip();\r
-                       }\r
-               }\r
-       }\r
-\r
-}\r
-\r
-\r
-/*\r
-using Psychlops;\r
-\r
-namespace PsychlopsSilverlight4test\r
-{\r
-       public class PsychlopsMain\r
-       {\r
-               public void psychlops_main()\r
-               {\r
-                       var figure_type = Psychlops.Widgets.Browser.Element.byID("FIGURE");\r
-                       var size_x = Psychlops.Widgets.Browser.Element.byID("SIZE_X");\r
-                       var size_y = Psychlops.Widgets.Browser.Element.byID("SIZE_Y");\r
-                       var shift_x = Psychlops.Widgets.Browser.Element.byID("SHIFT_X");\r
-                       var shift_y = Psychlops.Widgets.Browser.Element.byID("SHIFT_Y");\r
-                       var color_r = Psychlops.Widgets.Browser.Element.byID("COLOR_R");\r
-                       var color_g = Psychlops.Widgets.Browser.Element.byID("COLOR_G");\r
-                       var color_b = Psychlops.Widgets.Browser.Element.byID("COLOR_B");\r
+                       int frame = 0;\r
+                       int looming_direction = 1, motion_dir = 1;\r
 \r
-                       Canvas window = new Canvas(300, 300);\r
 \r
-                       var figure_r = new Rectangle();\r
-                       var figure_e = new Ellipse();\r
-                       Shape figure = figure_r;\r
-                       \r
                        while (!Keyboard.esc.pushed())\r
                        {\r
-                               if (System.String.Compare(figure_type, "Rectangle") == 0)\r
+                               window.clear(0);\r
+\r
+                               if (frame % 30 == 0)\r
                                {\r
-                                       figure_r.set(size_x, size_y);\r
-                                       figure = figure_r;\r
+                                       looming_direction = looming_direction * -1;\r
                                }\r
-                               else\r
+                               if (frame % 90 == 0)\r
                                {\r
-                                       figure_e.set(size_x, size_y);\r
-                                       figure = figure_e;\r
+                                       motion_dir *= -1;\r
                                }\r
-                               figure.fill = new Color(color_r, color_g, color_b);\r
-\r
-                               window.clear(Color.black);\r
-                               figure.centering().shift(shift_x, shift_y).draw();\r
-                               window.flip();\r
-                       }\r
-               }\r
-       }\r
 \r
-}\r
+                               figure.resize(figure.getWidth() + looming_direction * 1,\r
+                                                                       figure.getHeight() + looming_direction * 1);\r
+                               figure.shift(motion_dir * 1, motion_dir * 0);\r
 \r
-*/\r
-\r
-/*\r
-\r
-\r
-using Psychlops;\r
-\r
-namespace Psychlops\r
-{\r
+                               figure.draw();\r
+                               window.flip();\r
 \r
-       public class RandomDots\r
-       {\r
-               Rectangle dot;\r
-               public Point[] cood;\r
-               public RandomDots()\r
-               {\r
-                       cood = new Point[250];\r
-                       dot = new Rectangle(5, 5);\r
-               }\r
-               public void draw()\r
-               {\r
-                       dot.fill = Color.white;\r
-                       foreach (Point p in cood)\r
-                       {\r
-                               dot.centering(p).draw();\r
+                               frame++;\r
                        }\r
+\r
                }\r
-       }\r
 \r
+       }\r
 }\r
 \r
-\r
-\r
-namespace PsychlopsSilverlight4test\r
+       \r
+/*     \r
+using Psychlops;\r
+//Position Bias Program\r
+namespace PsychlopsSilverlightApp\r
 {\r
 \r
        public class PsychlopsMain\r
        {\r
                Canvas cnvs;\r
-               Image img;\r
-               Rectangle fixation;\r
-               Shape shape;\r
-               Color col;\r
-               int isize = 100;\r
-               double tfreq = 1;\r
+               Image img, img2, img3;\r
+               int isize = 80;        \r
                int frames;\r
-               RandomDots dots;\r
+               Psychlops.Widgets.Slider tfreq;\r
+               Psychlops.Widgets.Slider contrast;\r
+               Psychlops.Widgets.Slider lambda;\r
 \r
-               public void psychlops_main()\r
+                               public void psychlops_main()\r
                {\r
-                       cnvs = new Canvas(500, 500);\r
-                       img = new Image(isize * 2, isize * 2);\r
-                       fixation = new Rectangle(10, 10);\r
-                       fixation.fill = Color.red;\r
-                       //var poly = new Rectangle(100, 100);\r
-                       var poly = new Letters("日本語");\r
-                       //var poly = new Polygon(); poly.append(0, 100); poly.append(-100, 0); poly.append(0, -100); poly.append(100, 0);\r
-                       //var poly = new Ellipse(100, 100);\r
-                       //var poly = new Line(0,0,100, 0);\r
-                       poly.fill = Color.red;\r
-                       poly.stroke = new Stroke { color = Color.yellow, thick = 1 };\r
-                       shape = poly;\r
+                       cnvs = new Canvas(300, 600);\r
+                       Interval rng = new Interval();\r
+                       tfreq = new Psychlops.Widgets.Slider("Temporal Frequency(Hz)", -5 <= rng <= 5, 3.0);\r
+                       contrast = new Psychlops.Widgets.Slider("Contrast", 0.0 <= rng <= 1.0, 0.25);\r
+                       lambda = new Psychlops.Widgets.Slider("Wave Length", 10.0 <= rng <= 120.0, 30);\r
 \r
-                       var rng = new Interval();\r
-                       var slider = new Psychlops.Widgets.Slider("tesrt", 0 <= rng <= 5);\r
-\r
-                       dots = new RandomDots();\r
+                       img = new Image(isize * 2, isize * 2);\r
+                       img2 = new Image(isize * 2, isize * 2);\r
+                       img3 = new Image(isize * 2, isize * 2);\r
 \r
 \r
                        while (true)\r
                        {\r
-                               frames++;\r
-\r
-                               cnvs.clear(new Color(Mouse.left.pressed() ? 0.75 : 0.5));\r
-                               col.set(Math.random(1.0));\r
+                               cnvs.clear(new Color(0.5));\r
 \r
-                               fixation.centering();\r
-                               fixation.draw(Color.red);\r
+                               Figures.drawGabor(ref img, isize / 6, 1/lambda, contrast, 0.5 * Math.PI, (double)frames * 2.0 * Math.PI * tfreq / 60);\r
+                               Figures.drawGabor(ref img2, isize / 6, 1 / lambda, contrast, 0.5 * Math.PI, (double)frames * 2.0 * Math.PI * -tfreq / 60);\r
+                               Figures.drawGabor(ref img3, isize / 6, 1 / lambda, contrast, 0.5 * Math.PI, (double)frames * 2.0 * Math.PI * tfreq / 60);\r
 \r
-                               //Figures.drawGabor(ref img, 20, 100, 1, 0, frames * 2.0 * Math.PI / tfreq / 60);\r
-                               //Figures.drawGaussian(ref img, 20, 1);\r
-                               Figures.drawGrating(ref img, 30, 30, 20, 1, 2, frames * 2.0 * Math.PI / tfreq / 60);\r
-                               img.centering(Mouse.position);\r
-                               img.draw();\r
-\r
-                               shape.centering(Mouse.position).shift(100, 0);\r
-                               shape.draw();\r
-                               if (Keyboard.spc.pressed()) cnvs.var(Mouse.x, 100, 100);\r
-\r
-                               cnvs.var(frames, 20, 20);\r
-                               slider.value = frames / 100.0;\r
-\r
-                               fixation.shift(100, 100);\r
-                               fixation.draw(new Stroke(Color.blue, 3));\r
-\r
-                               for (int i = 0; i < dots.cood.Length; i++)\r
-                               {\r
-                                       dots.cood[i].set(Math.random(500), Math.random(500));\r
-                               }\r
-                               dots.draw();\r
+                               img.centering().shift(0, -isize * 1.5).draw();\r
+                               img2.centering().draw();\r
+                               img3.centering().shift(0, isize * 1.5).draw();\r
+                \r
+                               if (!Mouse.left.pressed()) frames++;\r
 \r
                                cnvs.flip();\r
                        }\r
                }\r
        }\r
-\r
 }\r
- * \r
- * */\r
-\r
-\r
+*/\r