public override int GetHashCode()
        {
            int hashCode = -1049898043;

            hashCode = hashCode * -1521134295 + Id.GetHashCode();
            hashCode = hashCode * -1521134295 + LabBookId.GetHashCode();
            hashCode = hashCode * -1521134295 + Lm.GetHashCode();
            hashCode = hashCode * -1521134295 + Am.GetHashCode();
            hashCode = hashCode * -1521134295 + Bm.GetHashCode();
            hashCode = hashCode * -1521134295 + Ls.GetHashCode();
            hashCode = hashCode * -1521134295 + As.GetHashCode();
            hashCode = hashCode * -1521134295 + Bs.GetHashCode();
            hashCode = hashCode * -1521134295 + WIm.GetHashCode();
            hashCode = hashCode * -1521134295 + YIm.GetHashCode();
            hashCode = hashCode * -1521134295 + WIs.GetHashCode();
            hashCode = hashCode * -1521134295 + YIs.GetHashCode();
            hashCode = hashCode * -1521134295 + X.GetHashCode();
            hashCode = hashCode * -1521134295 + Y.GetHashCode();
            hashCode = hashCode * -1521134295 + Z.GetHashCode();
            hashCode = hashCode * -1521134295 + EqualityComparer <string> .Default.GetHashCode(Comment);

            hashCode = hashCode * -1521134295 + Created.GetHashCode();
            hashCode = hashCode * -1521134295 + Updated.GetHashCode();
            return(hashCode);
        }
Esempio n. 2
0
        // Set the transparent pixel.
        private void picImage_MouseClick(object sender, MouseEventArgs e)
        {
            // Get the color clicked.
            Color color = Bm.GetPixel(e.X - Offset, e.Y - Offset);

            // Make that color transparent.
            Bm.MakeTransparent(color);
            // Show the result.
            pb.Refresh();
        }
Esempio n. 3
0
        public override void Draw()
        {
            Point O = position;

            for (int x = 0; x < Bm.Width; x++)
            {
                Bm.SetPixel(x, O.Y, Color);
            }
            for (int y = 0; y < Bm.Height; ++y)
            {
                Bm.SetPixel(O.X, y, Color);
            }
        }
Esempio n. 4
0
 // Save the file.
 private void mnuFileSave_Click(object sender, EventArgs e)
 {
     //if (sfdFile.ShowDialog() == DialogResult.OK)
     {
         try
         {
             Bm.Save(sfdFile.FileName, ImageFormat.Png);
         }
         catch (Exception ex)
         {
             MessageBox.Show(ex.Message);
         }
     }
 }
Esempio n. 5
0
        public static void Main(string[] args)
        {
            if (args.Length != 2)
            {
                Console.WriteLine("Usage: CpmDefs.exe <cpmdisks.noi> <cpmdisks.xml>");
                return;
            }

            StreamReader defsReader   = new StreamReader(args[0]);
            bool         inDefinition = false;

            CpmDefinitions defs = new CpmDefinitions();

            defs.definitions = new List <CpmDefinition>();
            int maxSectors = 0;
            int maxSize    = 0;

            CpmDefinition def = new CpmDefinition();

            while (defsReader.Peek() >= 0)
            {
                string _line = defsReader.ReadLine();

                if (inDefinition)
                {
                    Regex Ir = new Regex(informationRegEx);
                    Regex Sr = new Regex(sideRegEx);
                    Regex Dr = new Regex(dpbRegEx);
                    Regex Er = new Regex(endRegEx);
                    Regex Wr = new Regex(seeRegEx);

                    Match Im;
                    Match Sm;
                    Match Dm;
                    Match Em;
                    Match Wm;

                    Im = Ir.Match(_line);
                    Sm = Sr.Match(_line);
                    Dm = Dr.Match(_line);
                    Em = Er.Match(_line);
                    Wm = Wr.Match(_line);

                    int temp;

                    if (Im.Success)
                    {
                        if (!string.IsNullOrEmpty(Im.Result("${encoding}")) && !string.IsNullOrEmpty(Im.Result("${bitrate}")))
                        {
                            def.encoding = Im.Result("${encoding}");
                            def.bitrate  = Im.Result("${bitrate}");
                        }

                        if (!string.IsNullOrEmpty(Im.Result("${cylinders}")) && int.TryParse(Im.Result("${cylinders}"), out temp))
                        {
                            def.cylinders = temp;
                        }

                        if (!string.IsNullOrEmpty(Im.Result("${sides}")) && int.TryParse(Im.Result("${sides}"), out temp))
                        {
                            def.sides = temp;
                        }

                        if (!string.IsNullOrEmpty(Im.Result("${skew}")) && int.TryParse(Im.Result("${skew}"), out temp))
                        {
                            def.skew = temp;
                        }

                        if (!string.IsNullOrEmpty(Im.Result("${sectors}")) && !string.IsNullOrEmpty(Im.Result("${bps}")))
                        {
                            if (int.TryParse(Im.Result("${sectors}"), out temp))
                            {
                                def.sectorsPerTrack = temp;
                            }
                            if (int.TryParse(Im.Result("${bps}"), out temp))
                            {
                                def.bytesPerSector = temp;
                            }
                        }

                        if (!string.IsNullOrEmpty(Im.Result("${order}")))
                        {
                            def.order = Im.Result("${order}");
                        }

                        def.evenOdd    |= (!string.IsNullOrEmpty(Im.Result("${even}")) && Im.Result("${even}") == "EVEN-ODD");
                        def.complement |= (!string.IsNullOrEmpty(Im.Result("${complement}")) && Im.Result("${complement}") == "COMPLEMENT");

                        if (!string.IsNullOrEmpty(Im.Result("${label}")))
                        {
                            def.label = Im.Result("${label}");
                        }
                    }
                    else if (Sm.Success)
                    {
                        if (Sm.Result("${side}") == "1" && int.TryParse(Sm.Result("${sideid}"), out temp))
                        {
                            def.side1        = new Side();
                            def.side1.sideId = temp;
                            string[] sectorIds = Sm.Result("${sectors}").Split(new char[] { ' ', ',' }, StringSplitOptions.RemoveEmptyEntries);
                            def.side1.sectorIds = new int[sectorIds.Length];
                            for (int i = 0; i < sectorIds.Length; i++)
                            {
                                string toConvert;
                                int    fromBase;

                                if (sectorIds[i].ToLowerInvariant().Last() == 'h')
                                {
                                    toConvert = sectorIds[i].Substring(0, sectorIds[i].Length - 1);
                                    fromBase  = 16;
                                }
                                else
                                {
                                    toConvert = sectorIds[i];
                                    fromBase  = 10;
                                }

                                def.side1.sectorIds[i] = Convert.ToInt32(toConvert, fromBase);
                            }
                        }
                        else if (Sm.Result("${side}") == "2" && int.TryParse(Sm.Result("${sideid}"), out temp))
                        {
                            def.side2        = new Side();
                            def.side2.sideId = temp;
                            string[] sectorIds = Sm.Result("${sectors}").Split(new char[] { ' ', ',' }, StringSplitOptions.RemoveEmptyEntries);
                            def.side2.sectorIds = new int[sectorIds.Length];
                            for (int i = 0; i < sectorIds.Length; i++)
                            {
                                string toConvert;
                                int    fromBase;

                                if (sectorIds[i].ToLowerInvariant().Last() == 'h')
                                {
                                    toConvert = sectorIds[i].Substring(0, sectorIds[i].Length - 1);
                                    fromBase  = 16;
                                }
                                else
                                {
                                    toConvert = sectorIds[i];
                                    fromBase  = 10;
                                }

                                def.side2.sectorIds[i] = Convert.ToInt32(toConvert, fromBase);
                            }
                        }
                    }
                    else if (Dm.Success)
                    {
                        if (int.TryParse(Dm.Result("${bsh}"), out temp))
                        {
                            def.bsh = temp;
                        }
                        if (int.TryParse(Dm.Result("${blm}"), out temp))
                        {
                            def.blm = temp;
                        }
                        if (int.TryParse(Dm.Result("${exm}"), out temp))
                        {
                            def.exm = temp;
                        }
                        if (int.TryParse(Dm.Result("${dsm}"), out temp))
                        {
                            def.dsm = temp;
                        }
                        if (int.TryParse(Dm.Result("${drm}"), out temp))
                        {
                            def.drm = temp;
                        }
                        if (Dm.Result("${hex0}") == "H")
                        {
                            def.al0 = Convert.ToInt32(Dm.Result("${al0}"), 16);
                        }
                        else
                        {
                            def.al0 = Convert.ToInt32(Dm.Result("${al0}"), 10);
                        }
                        if (Dm.Result("${hex1}") == "H")
                        {
                            def.al1 = Convert.ToInt32(Dm.Result("${al1}"), 16);
                        }
                        else
                        {
                            def.al1 = Convert.ToInt32(Dm.Result("${al1}"), 10);
                        }
                        if (int.TryParse(Dm.Result("${ofs}"), out temp))
                        {
                            def.ofs = temp;
                        }
                        if (int.TryParse(Dm.Result("${sofs}"), out temp))
                        {
                            def.sofs = temp;
                        }
                    }
                    else if (Em.Success)
                    {
                        defs.definitions.Add(def);
                        inDefinition = false;

                        int sectors = def.cylinders * def.sides * def.sectorsPerTrack;
                        int size    = sectors * def.bytesPerSector;

                        if (sectors > maxSectors)
                        {
                            maxSectors = sectors;
                        }
                        if (size > maxSize)
                        {
                            maxSize = size;
                        }
                    }
                    else
                    {
                        inDefinition &= !Wm.Success;
                    }
                }
                else
                {
                    Regex Br = new Regex(beginRegEx);
                    Match Bm;
                    Bm = Br.Match(_line);

                    if (Bm.Success == true)
                    {
                        inDefinition = true;
                        def          = new CpmDefinition();
                        if (!string.IsNullOrEmpty(Bm.Result("${label}")))
                        {
                            def.label = Bm.Result("${label}");
                        }
                        if (!string.IsNullOrEmpty(Bm.Result("${comment}")))
                        {
                            def.comment = Bm.Result("${comment}");
                        }
                    }
                }
            }

            defsReader.Close();

            Console.WriteLine("Converted {0} definitions", defs.definitions.Count);
            Console.WriteLine("Disk with most sectors had {0} sectors", maxSectors);
            Console.WriteLine("Biggest disk had {0} bytes", maxSize);

            Console.WriteLine("Removing duplicate definitions");
            CpmDefinitions noDups = new CpmDefinitions();

            noDups.definitions = new List <CpmDefinition>();

            foreach (CpmDefinition oldDef in defs.definitions)
            {
                bool unique = true;

                foreach (CpmDefinition newDef in noDups.definitions)
                {
                    bool sameEncoding        = oldDef.encoding == newDef.encoding;
                    bool sameBitrate         = oldDef.bitrate == newDef.bitrate;
                    bool sameCylinders       = oldDef.cylinders == newDef.cylinders;
                    bool sameSides           = oldDef.sides == newDef.sides;
                    bool sameSectorsPerTrack = oldDef.sectorsPerTrack == newDef.sectorsPerTrack;
                    bool sameBytesPerSector  = oldDef.bytesPerSector == newDef.bytesPerSector;
                    bool sameSkew            = oldDef.skew == newDef.skew;
                    bool sameOrder           = oldDef.order == newDef.order;
                    bool sameBsh             = oldDef.bsh == newDef.bsh;
                    bool sameBlm             = oldDef.blm == newDef.blm;
                    bool sameExm             = oldDef.exm == newDef.exm;
                    bool sameDsm             = oldDef.dsm == newDef.dsm;
                    bool sameDrm             = oldDef.drm == newDef.drm;
                    bool sameAl0             = oldDef.al0 == newDef.al0;
                    bool sameAl1             = oldDef.al1 == newDef.al1;
                    bool sameOfs             = oldDef.ofs == newDef.ofs;
                    bool sameSofs            = oldDef.sofs == newDef.sofs;
                    bool sameComplement      = oldDef.complement == newDef.complement;
                    bool sameEvenOdd         = oldDef.evenOdd == newDef.evenOdd;

                    bool sameSide1;
                    if (oldDef.side1 == null && newDef.side1 == null)
                    {
                        sameSide1 = true;
                    }
                    else if (oldDef.side1 != null && newDef.side1 != null)
                    {
                        if (oldDef.side1.sideId != newDef.side1.sideId)
                        {
                            sameSide1 = false;
                        }
                        else
                        {
                            sameSide1 = oldDef.side1.sectorIds.SequenceEqual(newDef.side1.sectorIds);
                        }
                    }
                    else
                    {
                        sameSide1 = false;
                    }

                    bool sameSide2;
                    if (oldDef.side2 == null && newDef.side2 == null)
                    {
                        sameSide2 = true;
                    }
                    else if (oldDef.side2 != null && newDef.side2 != null)
                    {
                        if (oldDef.side2.sideId != newDef.side2.sideId)
                        {
                            sameSide2 = false;
                        }
                        else
                        {
                            sameSide2 = oldDef.side2.sectorIds.SequenceEqual(newDef.side2.sectorIds);
                        }
                    }
                    else
                    {
                        sameSide2 = false;
                    }

                    if (sameEncoding && sameBitrate && sameCylinders && sameSides && sameSectorsPerTrack && sameBytesPerSector && sameSkew && sameOrder &&
                        sameBsh && sameBlm && sameExm && sameDsm && sameDrm && sameAl0 && sameAl1 && sameOfs && sameSofs && sameComplement && sameEvenOdd &&
                        sameSide1 && sameSide2)
                    {
                        unique = false;
                        break;
                    }
                }

                if (unique)
                {
                    noDups.definitions.Add(oldDef);
                }
            }

            defs = noDups;
            Console.WriteLine("Writing {0} definitions", defs.definitions.Count);
            defs.creation = DateTime.UtcNow;
            TextWriter    defsWriter = new StreamWriter(args[1]);
            XmlSerializer ser        = new XmlSerializer(typeof(CpmDefinitions));

            ser.Serialize(defsWriter, defs);
            defsWriter.Close();
        }
 public bool Runbase(String data, System.Net.Sockets.Socket soc)
 {
     Bm.init(data, soc);
     return(true);
 }