コード例 #1
0
ファイル: BaseBoat.cs プロジェクト: justdanofficial/khaeros
        public BaseBoat()
            : base(0x4000)
        {
            m_TillerMan = new TillerMan( this );
            m_Hold = new Hold( this );

            m_PPlank = new Plank( this, PlankSide.Port, 0 );
            m_SPlank = new Plank( this, PlankSide.Starboard, 0 );

            m_PPlank.MoveToWorld( new Point3D( X + PortOffset.X, Y + PortOffset.Y, Z ), Map );
            m_SPlank.MoveToWorld( new Point3D( X + StarboardOffset.X, Y + StarboardOffset.Y, Z ), Map );

            Facing = Direction.North;

            m_NextNavPoint = -1;

            Movable = false;

            m_Instances.Add( this );
        }
コード例 #2
0
ファイル: BaseBoat.cs プロジェクト: FreeReign/Rebirth-Repack
        public BaseBoat()
            : base(0x4000)
        {
            m_DecayTime = DateTime.Now + BoatDecayDelay;

            m_TillerMan = new TillerMan( this );
            m_Hold = new Hold( this );

            m_PPlank = new Plank( this, PlankSide.Port, 0 );
            m_SPlank = new Plank( this, PlankSide.Starboard, 0 );

            m_PPlank.MoveToWorld( new Point3D( X + PortOffset.X, Y + PortOffset.Y, Z ), Map );
            m_SPlank.MoveToWorld( new Point3D( X + StarboardOffset.X, Y + StarboardOffset.Y, Z ), Map );

            Facing = Direction.North;

            Movable = false;

            m_UpdateDeck = Timer.DelayCall( TimeSpan.FromMinutes( 10.0 ), TimeSpan.FromMinutes( 10.0 ), new TimerCallback( UpdateDeck ) );
        }
コード例 #3
0
ファイル: BaseBoat.cs プロジェクト: m309/ForkUO
        public BaseBoat()
            : base(0x0)
        {
            this.m_DecayTime = DateTime.Now + BoatDecayDelay;

            this.m_TillerMan = new TillerMan(this);
            this.m_Hold = new Hold(this);

            this.m_PPlank = new Plank(this, PlankSide.Port, 0);
            this.m_SPlank = new Plank(this, PlankSide.Starboard, 0);

            this.m_PPlank.MoveToWorld(new Point3D(this.X + this.PortOffset.X, this.Y + this.PortOffset.Y, this.Z), this.Map);
            this.m_SPlank.MoveToWorld(new Point3D(this.X + this.StarboardOffset.X, this.Y + this.StarboardOffset.Y, this.Z), this.Map);

            this.Facing = Direction.North;

            this.m_NextNavPoint = -1;

            this.Movable = false;

            m_Instances.Add(this);
        }
コード例 #4
0
 public RenameShipEntry(TillerMan tillerman, Mobile from)
     : base(1111680, 3)
 {
     m_TillerMan = tillerman;
     m_From      = from;
 }
コード例 #5
0
ファイル: BaseBoat.cs プロジェクト: PepeBiondi/runsa
		public override void Deserialize( GenericReader reader )
		{
			base.Deserialize( reader );

			int version = reader.ReadInt();

			switch ( version )
			{
				case 3:
				{
					m_MapItem = (MapItem) reader.ReadItem();
					m_NextNavPoint = reader.ReadInt();

					goto case 2;
				}
				case 2:
				{
					m_Facing = (Direction)reader.ReadInt();

					goto case 1;
				}
				case 1:
				{
					m_DecayTime = reader.ReadDeltaTime();

					goto case 0;
				}
				case 0:
				{
					if ( version < 3 )
						m_NextNavPoint = -1;

					if ( version < 2 )
					{
						if ( ItemID == NorthID )
							m_Facing = Direction.North;
						else if ( ItemID == SouthID )
							m_Facing = Direction.South;
						else if ( ItemID == EastID )
							m_Facing = Direction.East;
						else if ( ItemID == WestID )
							m_Facing = Direction.West;
					}

					m_Owner = reader.ReadMobile();
					m_PPlank = reader.ReadItem() as Plank;
					m_SPlank = reader.ReadItem() as Plank;
					m_TillerMan = reader.ReadItem() as TillerMan;
					m_Hold = reader.ReadItem() as Hold;
					m_Anchored = reader.ReadBool();
					m_ShipName = reader.ReadString();

					if ( version < 1)
						Refresh();

					break;
				}
			}

			m_Instances.Add( this );
		}
コード例 #6
0
ファイル: TillerMan.cs プロジェクト: tflynt91/TrueUO
 public ShipRepairEntry(TillerMan tillerman, Mobile from)
     : base(1116590, 5)
 {
     m_TillerMan = tillerman;
     m_From      = from;
 }
コード例 #7
0
ファイル: TillerMan.cs プロジェクト: tflynt91/TrueUO
 public EmergencyRepairEntry(TillerMan tillerman, Mobile from)
     : base(1116589, 5)
 {
     m_TillerMan = tillerman;
     m_From      = from;
 }
コード例 #8
0
ファイル: BaseBoat.cs プロジェクト: greeduomacro/UO-Forever
        public override void Deserialize(GenericReader reader)
        {
            base.Deserialize(reader);

            int version = reader.ReadInt();

            switch (version)
            {
                case 8:
                    {
                        m_Sunk = reader.ReadBool();
                        goto case 7;
                    }
                case 7:
                    {
                        int numm_DamageEntries = reader.ReadInt();
                        for (int i = 0; i < numm_DamageEntries; i++)
                        {
                            Mobile mob = reader.ReadMobile();
                            int damage = reader.ReadInt();
                            DateTime expiration = DateTime.UtcNow + reader.ReadTimeSpan();
                            AddDamageEntry(mob, damage, expiration);
                        }
                        goto case 6;
                    }
                case 6:
                    {
                        int count = reader.ReadInt();
                        for (int i = 0; i < count; i++)
                        {
                            BoatComponent component = reader.ReadItem() as BoatComponent;
                            if (component != null) BoatComponents.Add(component);
                        }
                        goto case 5;
                    }
                case 5:
                    {
                        m_Hits = reader.ReadInt();
                        goto case 4;
                    }
                case 4:
                    {
                        m_RequiresWater = reader.ReadBool();
                        goto case 3;
                    }
                case 3:
                    {
                        m_MapItem = (MapItem)reader.ReadItem();
                        m_NextNavPoint = reader.ReadInt();

                        goto case 2;
                    }
                case 2:
                    {
                        m_Facing = (Direction)reader.ReadInt();

                        goto case 1;
                    }
                case 1:
                    {
                        m_DecayTime = reader.ReadDeltaTime();

                        goto case 0;
                    }
                case 0:
                    {
                        if (version < 3)
                            m_NextNavPoint = -1;

                        if (version < 2)
                        {
                            if (ItemID == NorthID)
                                m_Facing = Direction.North;
                            else if (ItemID == SouthID)
                                m_Facing = Direction.South;
                            else if (ItemID == EastID)
                                m_Facing = Direction.East;
                            else if (ItemID == WestID)
                                m_Facing = Direction.West;
                        }

                        m_Owner = reader.ReadMobile();
                        m_PPlank = reader.ReadItem() as Plank;
                        m_SPlank = reader.ReadItem() as Plank;
                        m_TillerMan = reader.ReadItem() as TillerMan;
                        m_Hold = reader.ReadItem() as Hold;
                        m_Anchored = reader.ReadBool();
                        m_ShipName = reader.ReadString();

                        if (version < 1)
                            Refresh();

                        break;
                    }
            }

            m_Instances.Add(this);
        }
コード例 #9
0
ファイル: BaseBoat.cs プロジェクト: Crome696/ServUO
        public BaseBoat(Direction direction, bool isClassic)
            : base(0x0)
        {
            m_DecayTime = DateTime.UtcNow + BoatDecayDelay;
            m_Decay = true;
            Facing = direction;
            Layer = Layer.Mount;
            m_Anchored = false;
            m_VirtualMount = new BoatMountItem(this);

            if (isClassic)
            {
                m_TillerMan = new TillerMan(this);
                m_PPlank = new Plank(this, PlankSide.Port, 0);
                m_SPlank = new Plank(this, PlankSide.Starboard, 0);

                m_PPlank.MoveToWorld(new Point3D(X + PortOffset.X, Y + PortOffset.Y, Z), Map);
                m_SPlank.MoveToWorld(new Point3D(X + StarboardOffset.X, Y + StarboardOffset.Y, Z), Map);

                m_Hold = new Hold(this);

                UpdateComponents();
            }

            m_NextNavPoint = -1;
            Movable = false;
            m_Instances.Add(this);
        }
コード例 #10
0
ファイル: TillerMan.cs プロジェクト: Crome696/ServUO
 public RenameShipEntry(TillerMan tillerman, Mobile from)
     : base(1111680, 3)
 {
     m_TillerMan = tillerman;
     m_From = from;
 }
コード例 #11
0
ファイル: BaseBoat.cs プロジェクト: FreeReign/Rebirth-Repack
        public override void Deserialize( GenericReader reader )
        {
            base.Deserialize( reader );

            int version = reader.ReadInt();

            switch ( version )
            {
                case 2:
                {
                    m_Facing = (Direction)reader.ReadInt();

                    goto case 1;
                }
                case 1:
                {
                    m_DecayTime = reader.ReadDeltaTime();

                    goto case 0;
                }
                case 0:
                {
                    if ( version < 2 )
                    {
                        if ( ItemID == NorthID )
                            m_Facing = Direction.North;
                        else if ( ItemID == SouthID )
                            m_Facing = Direction.South;
                        else if ( ItemID == EastID )
                            m_Facing = Direction.East;
                        else if ( ItemID == WestID )
                            m_Facing = Direction.West;
                    }

                    m_Owner = reader.ReadMobile();
                    m_PPlank = reader.ReadItem() as Plank;
                    m_SPlank = reader.ReadItem() as Plank;
                    m_TillerMan = reader.ReadItem() as TillerMan;
                    m_Hold = reader.ReadItem() as Hold;
                    m_Anchored = reader.ReadBool();
                    m_ShipName = reader.ReadString();

                    if ( version < 1)
                        Refresh();

                    break;
                }
            }

            m_UpdateDeck = Timer.DelayCall( TimeSpan.FromMinutes( 10.0 ), TimeSpan.FromMinutes( 10.0 ), new TimerCallback( UpdateDeck ) );
        }