示例#1
0
 public Dagger()
 {
     name     = "Dagger";
     damage   = new D4();
     material = "Iron";
     type     = "Dex";
 }
示例#2
0
 public void Next3()
 {
     D3.SetActive(false);
     D4.SetActive(true);
     Nex3.SetActive(false);
     Nex4.SetActive(true);
 }
示例#3
0
 public Fists()
 {
     name     = "Fists";
     damage   = new D4();
     material = "Bare";
     type     = "Str";
 }
示例#4
0
 private void Torres_Load(object sender, EventArgs e)
 {
     // a los discos se les asigna el panel 1 y se invoca el metodo bingtofront  coloca enfrete de todo
     D1.Parent = panel1;
     D2.Parent = panel1;
     D3.Parent = panel1;
     D4.Parent = panel1;
     D5.Parent = panel1;
     D1.Top    = panel1.Height - D1.Height - 0 * D1.Height - PicBase1.Height;
     D2.Top    = panel1.Height - D2.Height - 1 * D2.Height - PicBase1.Height;
     D3.Top    = panel1.Height - D3.Height - 2 * D3.Height - PicBase1.Height;
     D4.Top    = panel1.Height - D4.Height - 3 * D4.Height - PicBase1.Height;
     D5.Top    = panel1.Height - D5.Height - 4 * D5.Height - PicBase1.Height;
     D1.BringToFront();
     D2.BringToFront();
     D3.BringToFront();
     D4.BringToFront();
     D5.BringToFront();
     pila1.Clear();
     pila1.Push(D1);
     pila1.Push(D2);
     pila1.Push(D3);
     pila1.Push(D4);
     pila1.Push(D5);
     pila2.Clear();
     pila3.Clear();
     contador     = 0;
     LbTotal.Text = "0";
 }
示例#5
0
 private void A1_Tick(object sender, EventArgs e)
 {
     PS3.Extension.WriteString(0x004eb39c, "^5S^7pec Ops ^5M^7od Menu ^5B^7y ^5M^7rNiato - ^5M^7ain ^5M^7enu\n\n^2-->^5Host Menu\nClient 1 Menu\nReset Menu\nAccount Menu\nTeleport Menu\nVision Menu\nCredit Menu\n\n\n^3Client 0 : ^2" + textBox1.Text + "\n^3Client 1 : ^2" + textBox2.Text + "^5");
     if (Key_IsDown((uint)0) == "X")
     {
         HostMenuMain.Stop();
         B1.Start();
     }
     if (Key_IsDown((uint)0) == "R1")
     {
         HostMenuMain.Stop();
         Client1.Start();
     }
     if (Key_IsDown((uint)0) == "R3 + L3")
     {
         HostMenuMain.Stop();
         B1.Stop();
         B2.Stop();
         B3.Stop();
         B4.Stop();
         B5.Stop();
         Client1.Stop();
         C1.Stop();
         C2.Stop();
         C3.Stop();
         C4.Stop();
         ResetMenu.Stop();
         D1.Stop();
         D2.Stop();
         D3.Stop();
         D4.Stop();
         D5.Stop();
         AccountMenu.Stop();
         E1.Stop();
         E2.Stop();
         E3.Stop();
         E4.Stop();
         E5.Stop();
         TeleportMenu.Stop();
         F1.Stop();
         F2.Stop();
         F3.Stop();
         F4.Stop();
         VisionMenu.Stop();
         G1.Stop();
         G2.Stop();
         G3.Stop();
         G4.Stop();
         G5.Stop();
         G6.Stop();
         OtherMenu.Stop();
         H1.Stop();
         PS3.Extension.WriteString(0x004eb39c, "^5Menu ^1Closed");
         simpleButton2.Enabled           = true;
         toolStripStatusLabel2.Text      = "Not Started !";
         toolStripStatusLabel2.ForeColor = Color.Red;
         simpleButton3.Enabled           = false;
     }
 }
示例#6
0
        static void Main(string[] args)
        {
            WriteLine("D4: {0}", D4); WriteLine();

            D4.ShowOperationTableColored(); WriteLine();

            D4.ShowCosets();
        }
示例#7
0
 public ActionResult <Employee> GetEmployee(string email) =>
 fs(D4.createEmailAddress(email))
 .Map(email =>
      fs(D4.tryGetEmployeeFromDatabase(_db, email)).Map(fs)
      .Map(oe => oe
           .Map(e => (ActionResult <Employee>)Ok(e))
           .IfFail(_ => NotFound()))
      .IfFail(e => StatusCode(StatusCodes.Status408RequestTimeout, e.First())))
 .IfFail(e => BadRequest(e.First()));
示例#8
0
 public void Next4()
 {
     D4.SetActive(false);
     booltoo.SetActive(false);
     Skip.SetActive(false);
     Nex4.SetActive(false);
     Back.SetActive(false);
     Destroy(DaeHwa);
     Time.timeScale = 1.0f;
 }
示例#9
0
        private void Write(byte value, byte[] halfAddress)
        {
            D4.Write((value & halfAddress[0]) > 0);
            D5.Write((value & halfAddress[1]) > 0);
            D6.Write((value & halfAddress[2]) > 0);
            D7.Write((value & halfAddress[3]) > 0);

            Enable.Write(true);
            Enable.Write(false);
            //Debug.Print("Wrote " + value.ToString());
        }
示例#10
0
 paramTest4Async(Ice.Current current)
 {
     D4 d4 = new D4();
     d4.sb = "D4.sb (1)";
     d4.pb = null;
     d4.p1 = new B();
     d4.p1.sb = "B.sb (1)";
     d4.p2 = new B();
     d4.p2.sb = "B.sb (2)";
     return Task.FromResult<TestIntf_ParamTest4Result>(new TestIntf_ParamTest4Result(d4.p2, d4));
 }
示例#11
0
        paramTest4Async(Current current)
        {
            var d4 = new D4();

            d4.sb    = "D4.sb (1)";
            d4.pb    = null;
            d4.p1    = new B();
            d4.p1.sb = "B.sb (1)";
            d4.p2    = new B();
            d4.p2.sb = "B.sb (2)";
            return(MakeValueTask(((B?)d4.p2, (B?)d4)));
        }
示例#12
0
        public ValueTask <(B?, B?)> ParamTest4Async(Current current, CancellationToken cancel)
        {
            var d4 = new D4();

            d4.Sb    = "D4.sb (1)";
            d4.Pb    = null;
            d4.P1    = new B();
            d4.P1.Sb = "B.sb (1)";
            d4.P2    = new B();
            d4.P2.Sb = "B.sb (2)";
            return(new((d4.P2, d4)));
        }
示例#13
0
        public ValueTask <(B?, B?)> ParamTest4Async(Current current)
        {
            var d4 = new D4();

            d4.Sb    = "D4.sb (1)";
            d4.Pb    = null;
            d4.P1    = new B();
            d4.P1.Sb = "B.sb (1)";
            d4.P2    = new B();
            d4.P2.Sb = "B.sb (2)";
            return(MakeValueTask(((B?)d4.P2, (B?)d4)));
        }
示例#14
0
    public override void paramTest4_async(AMD_TestIntf_paramTest4 cb, Ice.Current current)
    {
        D4 d4 = new D4();

        d4.sb    = "D4.sb (1)";
        d4.pb    = null;
        d4.p1    = new B();
        d4.p1.sb = "B.sb (1)";
        d4.p2    = new B();
        d4.p2.sb = "B.sb (2)";
        cb.ice_response(d4.p2, d4);
    }
示例#15
0
        public (B, B) ParamTest4(Current current)
        {
            var d4 = new D4();

            d4.Sb    = "D4.sb (1)";
            d4.Pb    = null;
            d4.P1    = new B();
            d4.P1.Sb = "B.sb (1)";
            d4.P2    = new B();
            d4.P2.Sb = "B.sb (2)";
            return(d4.P2, d4);
        }
示例#16
0
    paramTest4Async(Ice.Current current)
    {
        D4 d4 = new D4();

        d4.sb    = "D4.sb (1)";
        d4.pb    = null;
        d4.p1    = new B();
        d4.p1.sb = "B.sb (1)";
        d4.p2    = new B();
        d4.p2.sb = "B.sb (2)";
        return(Task.FromResult((d4.p2, (B)d4)));
    }
示例#17
0
    public (B, B) paramTest4(Ice.Current current)
    {
        var d4 = new D4();

        d4.sb    = "D4.sb (1)";
        d4.pb    = null;
        d4.p1    = new B();
        d4.p1.sb = "B.sb (1)";
        d4.p2    = new B();
        d4.p2.sb = "B.sb (2)";
        return(d4.p2, d4);
    }
示例#18
0
    public ITestIntf.ParamTest4ReturnValue paramTest4(Ice.Current current)
    {
        D4 d4 = new D4();

        d4.sb    = "D4.sb (1)";
        d4.pb    = null;
        d4.p1    = new B();
        d4.p1.sb = "B.sb (1)";
        d4.p2    = new B();
        d4.p2.sb = "B.sb (2)";
        return(new ITestIntf.ParamTest4ReturnValue(d4.p2, d4));
    }
示例#19
0
    paramTest4Async(Action <TestIntf_ParamTest4Result> response, Action <Exception> exception, Ice.Current current)
    {
        D4 d4 = new D4();

        d4.sb    = "D4.sb (1)";
        d4.pb    = null;
        d4.p1    = new B();
        d4.p1.sb = "B.sb (1)";
        d4.p2    = new B();
        d4.p2.sb = "B.sb (2)";
        response(new TestIntf_ParamTest4Result(d4.p2, d4));
    }
示例#20
0
    paramTest4Async(Ice.Current current)
    {
        D4 d4 = new D4();

        d4.sb    = "D4.sb (1)";
        d4.pb    = null;
        d4.p1    = new B();
        d4.p1.sb = "B.sb (1)";
        d4.p2    = new B();
        d4.p2.sb = "B.sb (2)";
        return(Task.FromResult(new ITestIntf.ParamTest4ReturnValue(d4.p2, d4)));
    }
示例#21
0
文件: TestI.cs 项目: xingx001/ice
    public B paramTest4(out B p1, Ice.Current current)
    {
        D4 d4 = new D4();

        d4.sb    = "D4.sb (1)";
        d4.pb    = null;
        d4.p1    = new B();
        d4.p1.sb = "B.sb (1)";
        d4.p2    = new B();
        d4.p2.sb = "B.sb (2)";
        p1       = d4;
        return(d4.p2);
    }
示例#22
0
        public void BaseAccessorsCanBeInvokedGeneric()
        {
            var d = new D4 <int>();

            d.P1 = 42;
            Assert.AreEqual(41, d.F1, "F1 value");

            d.F1 = 15;
            Assert.AreEqual(16, d.P1, "P1 value");

            d.F2 = 17;
            Assert.AreEqual(18, d.P2, "P2 value");

            d.P3 = 12;
            Assert.AreEqual(11, d.F3, "F3 value");
        }
示例#23
0
        protected void Page_Load(object sender, EventArgs e)
        {
            con.Open();
            SqlCommand cmd = con.CreateCommand();

            cmd.CommandType = CommandType.Text;
            cmd.CommandText = "select * from laptop where id= 2";
            cmd.ExecuteNonQuery();
            DataTable      dt = new DataTable();
            SqlDataAdapter da = new SqlDataAdapter(cmd);

            da.Fill(dt);
            D4.DataSource = dt;
            D4.DataBind();
            con.Close();
        }
示例#24
0
        public void SendPacket()
        {
            int checksum = 0;

            if (PacketNum++ > 999)
            {
                PacketNum = 0;
            }

            //get all the data in string form
            String num    = PacketNum.ToString("D3");
            String A0val  = A0.ReadRaw().ToString("D4");
            String A1val  = A1.ReadRaw().ToString("D4");
            String A2val  = A2.ReadRaw().ToString("D4");
            String A3val  = A3.ReadRaw().ToString("D4");
            String A4val  = A4.ReadRaw().ToString("D4");
            String A5val  = A5.ReadRaw().ToString("D4");
            char   D0val  = D0.Read() ? '1' : '0';
            char   D1val  = D1.Read() ? '1' : '0';
            char   D2val  = D2.Read() ? '1' : '0';
            char   D3val  = D3.Read() ? '1' : '0';
            char   D4val  = D4.Read() ? '1' : '0';
            char   D5val  = D5.Read() ? '1' : '0';
            char   D6val  = D6.Read() ? '1' : '0';
            char   D7val  = D7.Read() ? '1' : '0';
            char   Btnval = Btn.Read() ? '1' : '0';

            //concat the data
            String packet = num + A0val + A1val + A2val + A3val + A4val + A5val + Btnval + D0val + D1val + D2val + D3val + D4val + D5val + D6val + D7val;

            //compute checksum
            foreach (char digit in packet)
            {
                checksum += (digit);
            }
            checksum %= 1000;

            //append checksum and protocol frame stuff
            packet = "###" + packet + checksum + "\r\n";

            //convert to byte array for sending
            byte[] bytepacket = System.Text.Encoding.UTF8.GetBytes(packet);

            //send the packet
            _serial.Write(bytepacket, 0, bytepacket.Length);
        }
示例#25
0
 private void simpleButton3_Click(object sender, EventArgs e)
 {
     MainMenu.Stop();
     HostMenuMain.Stop();
     B1.Stop();
     B2.Stop();
     B3.Stop();
     B4.Stop();
     B5.Stop();
     Client1.Stop();
     C1.Stop();
     C2.Stop();
     C3.Stop();
     C4.Stop();
     ResetMenu.Stop();
     D1.Stop();
     D2.Stop();
     D3.Stop();
     D4.Stop();
     D5.Stop();
     AccountMenu.Stop();
     E1.Stop();
     E2.Stop();
     E3.Stop();
     E4.Stop();
     E5.Stop();
     TeleportMenu.Stop();
     F1.Stop();
     F2.Stop();
     F3.Stop();
     F4.Stop();
     VisionMenu.Stop();
     G1.Stop();
     G2.Stop();
     G3.Stop();
     G4.Stop();
     G5.Stop();
     G6.Stop();
     OtherMenu.Stop();
     H1.Stop();
     PS3.Extension.WriteString(0x004eb39c, "^5Menu ^1Closed");
     toolStripStatusLabel2.Text      = "Not Started !";
     toolStripStatusLabel2.ForeColor = Color.Red;
     simpleButton2.Enabled           = true;
     simpleButton3.Enabled           = false;
 }
示例#26
0
    public static D4 Opposite(D4 direction)
    {
        switch (direction)
        {
        case D4.N:
            return(D4.S);

        case D4.E:
            return(D4.W);

        case D4.S:
            return(D4.N);

        case D4.W:
            return(D4.E);
        }

        return(direction);
    }
示例#27
0
        static void Main(string[] args)
        {
            WriteLine("D4: {0}\n", D4); D4.ShowOperationTableColored(); WriteLine();

            foreach (var N in D4.NormalProperSubgroups())
            {
                WriteLine("normal subgroup:   N = {0}", N);
            }

            WriteLine();

            foreach (var N in D4.NormalProperSubgroups())
            {
                WriteLine("normal subgroup:   N = {0}", N);

                var D4_N = D4.QuotientGroup(N, "N");

                WriteLine("    quotient group:   D4/N = {0}", D4_N);;

                WriteLine("    isomorphic image: {0}", D4_N.IsomorphicImage());

                WriteLine("        homomorphisms:");

                foreach (var f in D4.GenerateHomomorphisms(D4_N))
                {
                    WriteLine("            {0}", String.Join(" ", D4.Set.Select(elt => (D4.Lookup(elt), f(elt)))));
                }

                // HomomorphismToString(G, f)

                WriteLine();

                D4_N.ShowOperationTableColored();

                WriteLine();
            }

            ZxZ(2, 2).ShowOperationTableColored();
        }
        static void Main(string[] args)
        {
            WriteLine("D4: {0}", D4);

            D4.ShowOperationTableColored();

            void check(GapPerm a, GapPerm b)
            {
                WriteLine("a    {0}", D4.Lookup(a));
                WriteLine("b    {0}", D4.Lookup(b));
                WriteLine("ba   {0}", D4.Lookup(b.Compose(a)));
                WriteLine("a³b  {0}", D4.Lookup(a.Compose(a.Compose(a.Compose(b)))));
            }

            check(R1, R4); WriteLine();
            check(R1, R5); WriteLine();
            check(R1, R6); WriteLine();
            check(R1, R7); WriteLine();

            WriteLine();

            D4.ShowCosets();
        }
示例#29
0
 private void D5_Tick(object sender, EventArgs e)
 {
     PS3.Extension.WriteString(0x004eb39c, "^5S^7pec Ops ^5M^7od Menu ^5B^7y ^5M^7rNiato - ^5R^7eset ^5M^7enu\n\nGod Mode\nMax Ammo\nAll Perks\nRapide Fire\nn^2-->^5Lock Controller");
     if (Key_IsDown((uint)0) == "R1")
     {
         D5.Stop();
         D1.Start();
     }
     if (Key_IsDown((uint)0) == "X")
     {
         byte[] buffer = new byte[] { 0x00 };
         PS3.SetMemory(0x012272ef, buffer);
     }
     if (Key_IsDown((uint)0) == "R3")
     {
         D5.Stop();
         HostMenuMain.Start();
     }
     if (Key_IsDown((uint)0) == "L1")
     {
         D5.Stop();
         D4.Start();
     }
 }
        static void Main(string[] args)
        {
            WriteLine("normal subgroups: \n");

            foreach (var elt in D4.NormalSubgroups())
            {
                WriteLine("    {0}", elt);
            }

            WriteLine("----------------------------------------------------------------------");

            foreach (var H in D4.NormalSubgroups())
            {
                WriteLine("normal subgroup: H = {0}", H);

                WriteLine("  coset grouping:");

                foreach (var elt in D4.CosetGrouping(H, "H"))
                {
                    WriteLine("    each of these: {0}   are equal to:   {1}", elt.ToMathSet(), elt.Key.ConvertAll(D4.Lookup));
                }

                WriteLine("  quotient group: D4/H = {0}\n", D4.QuotientGroup(H));

                D4.QuotientGroup(H).ShowOperationTableColored();

                WriteLine("----------------------------------------------------------------------");
            }

            WriteLine("NORMAL SUBGROUP                    QUOTIENT GROUP");

            foreach (var H in D4.NormalSubgroups())
            {
                WriteLine("H = {0,-30} D4/H = {1}", H, D4.QuotientGroup(H));
            }
        }
示例#31
0
 public override void paramTest4_async(AMD_TestIntf_paramTest4 cb, Ice.Current current)
 {
     D4 d4 = new D4();
     d4.sb = "D4.sb (1)";
     d4.pb = null;
     d4.p1 = new B();
     d4.p1.sb = "B.sb (1)";
     d4.p2 = new B();
     d4.p2.sb = "B.sb (2)";
     cb.ice_response(d4.p2, d4);
 }
示例#32
0
 public override B paramTest4(out B p1, Ice.Current current)
 {
     D4 d4 = new D4();
     d4.sb = "D4.sb (1)";
     d4.pb = null;
     d4.p1 = new B();
     d4.p1.sb = "B.sb (1)";
     d4.p2 = new B();
     d4.p2.sb = "B.sb (2)";
     p1 = d4;
     return d4.p2;
 }
示例#33
0
 public override Task<TestIntf_ParamTest4Result> paramTest4Async(Ice.Current current)
 {
     D4 d4 = new D4();
     d4.sb = "D4.sb (1)";
     d4.pb = null;
     d4.p1 = new B();
     d4.p1.sb = "B.sb (1)";
     d4.p2 = new B();
     d4.p2.sb = "B.sb (2)";
     return Task.FromResult<TestIntf_ParamTest4Result>(new TestIntf_ParamTest4Result(d4.p2, d4));
 }