#W# Initial Commit: Avatars Conquest

This commit is contained in:
WarrentyExpired 2026-07-03 20:19:48 -04:00
commit 8eae46895e
7512 changed files with 416187 additions and 0 deletions

View file

@ -0,0 +1,829 @@
using System;
using System.Collections.Generic;
using Server.Commands;
using Server.Network;
using Server.Targeting;
using Server.Mobiles;
namespace Server.Items
{
public abstract class BaseDoor : Item, ILockable, ITelekinesisable
{
private TrapType m_TrapType;
private int m_TrapPower;
private int m_TrapLevel;
[CommandProperty( AccessLevel.GameMaster )]
public TrapType TrapType
{
get
{
return m_TrapType;
}
set
{
m_TrapType = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public int TrapPower
{
get
{
return m_TrapPower;
}
set
{
m_TrapPower = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public int TrapLevel
{
get
{
return m_TrapLevel;
}
set
{
m_TrapLevel = value;
}
}
private bool m_Open, m_Locked;
private int m_OpenedID, m_OpenedSound;
private int m_ClosedID, m_ClosedSound;
private Point3D m_Offset;
private BaseDoor m_Link;
private uint m_KeyValue;
private DateTime m_Sealed;
private DateTime m_Rigged;
private Timer m_Timer;
private static Point3D[] m_Offsets = new Point3D[]
{
new Point3D(-1, 1, 0 ),
new Point3D( 1, 1, 0 ),
new Point3D(-1, 0, 0 ),
new Point3D( 1,-1, 0 ),
new Point3D( 1, 1, 0 ),
new Point3D( 1,-1, 0 ),
new Point3D( 0, 0, 0 ),
new Point3D( 0,-1, 0 ),
new Point3D( 0, 0, 0 ),
new Point3D( 0, 0, 0 ),
new Point3D( 0, 0, 0 ),
new Point3D( 0, 0, 0 )
};
// Called by RunUO
public static void Initialize()
{
EventSink.OpenDoorMacroUsed += new OpenDoorMacroEventHandler( EventSink_OpenDoorMacroUsed );
CommandSystem.Register( "Link", AccessLevel.GameMaster, new CommandEventHandler( Link_OnCommand ) );
CommandSystem.Register( "ChainLink", AccessLevel.GameMaster, new CommandEventHandler( ChainLink_OnCommand ) );
}
[Usage( "Link" )]
[Description( "Links two targeted doors together." )]
private static void Link_OnCommand( CommandEventArgs e )
{
e.Mobile.BeginTarget( -1, false, TargetFlags.None, new TargetCallback( Link_OnFirstTarget ) );
e.Mobile.SendMessage( "Target the first door to link." );
}
private static void Link_OnFirstTarget( Mobile from, object targeted )
{
BaseDoor door = targeted as BaseDoor;
if ( door == null )
{
from.BeginTarget( -1, false, TargetFlags.None, new TargetCallback( Link_OnFirstTarget ) );
from.SendMessage( "That is not a door. Try again." );
}
else
{
from.BeginTarget( -1, false, TargetFlags.None, new TargetStateCallback( Link_OnSecondTarget ), door );
from.SendMessage( "Target the second door to link." );
}
}
private static void Link_OnSecondTarget( Mobile from, object targeted, object state )
{
BaseDoor first = (BaseDoor)state;
BaseDoor second = targeted as BaseDoor;
if ( second == null )
{
from.BeginTarget( -1, false, TargetFlags.None, new TargetStateCallback( Link_OnSecondTarget ), first );
from.SendMessage( "That is not a door. Try again." );
}
else
{
first.Link = second;
second.Link = first;
from.SendMessage( "The doors have been linked." );
}
}
[Usage( "ChainLink" )]
[Description( "Chain-links two or more targeted doors together." )]
private static void ChainLink_OnCommand( CommandEventArgs e )
{
e.Mobile.BeginTarget( -1, false, TargetFlags.None, new TargetStateCallback( ChainLink_OnTarget ), new List<BaseDoor>() );
e.Mobile.SendMessage( "Target the first of a sequence of doors to link." );
}
private static void ChainLink_OnTarget( Mobile from, object targeted, object state )
{
BaseDoor door = targeted as BaseDoor;
if ( door == null )
{
from.BeginTarget( -1, false, TargetFlags.None, new TargetStateCallback( ChainLink_OnTarget ), state );
from.SendMessage( "That is not a door. Try again." );
}
else
{
List<BaseDoor> list = (List<BaseDoor>)state;
if ( list.Count > 0 && list[0] == door )
{
if ( list.Count >= 2 )
{
for ( int i = 0; i < list.Count; ++i )
list[i].Link = list[(i + 1) % list.Count];
from.SendMessage( "The chain of doors have been linked." );
}
else
{
from.BeginTarget( -1, false, TargetFlags.None, new TargetStateCallback( ChainLink_OnTarget ), state );
from.SendMessage( "You have not yet targeted two unique doors. Target the second door to link." );
}
}
else if ( list.Contains( door ) )
{
from.BeginTarget( -1, false, TargetFlags.None, new TargetStateCallback( ChainLink_OnTarget ), state );
from.SendMessage( "You have already targeted that door. Target another door, or retarget the first door to complete the chain." );
}
else
{
list.Add( door );
from.BeginTarget( -1, false, TargetFlags.None, new TargetStateCallback( ChainLink_OnTarget ), state );
if ( list.Count == 1 )
from.SendMessage( "Target the second door to link." );
else
from.SendMessage( "Target another door to link. To complete the chain, retarget the first door." );
}
}
}
private void SendMessageTo( Mobile to, int number, int hue )
{
if ( Deleted || !to.CanSee( this ) )
return;
to.Send( new Network.MessageLocalized( Serial, ItemID, Network.MessageType.Regular, hue, 3, number, "", "" ) );
}
private void SendMessageTo( Mobile to, string text, int hue )
{
if ( Deleted || !to.CanSee( this ) )
return;
to.Send( new Network.UnicodeMessage( Serial, ItemID, Network.MessageType.Regular, hue, 3, "ENU", "", text ) );
}
private static void EventSink_OpenDoorMacroUsed( OpenDoorMacroEventArgs args )
{
Mobile m = args.Mobile;
if ( m.Map != null )
{
int x = m.X, y = m.Y;
switch ( m.Direction & Direction.Mask )
{
case Direction.North: --y; break;
case Direction.Right: ++x; --y; break;
case Direction.East: ++x; break;
case Direction.Down: ++x; ++y; break;
case Direction.South: ++y; break;
case Direction.Left: --x; ++y; break;
case Direction.West: --x; break;
case Direction.Up: --x; --y; break;
}
Sector sector = m.Map.GetSector( x, y );
foreach ( Item item in sector.Items )
{
if ( item.Location.X == x && item.Location.Y == y && (item.Z + item.ItemData.Height) > m.Z && (m.Z + 16) > item.Z && item is BaseDoor && m.CanSee( item ) && m.InLOS( item ) )
{
if ( m.CheckAlive() )
{
m.SendLocalizedMessage( 500024 ); // Opening door...
item.OnDoubleClick( m );
}
break;
}
}
}
}
public static Point3D GetOffset( DoorFacing facing )
{
return m_Offsets[(int)facing];
}
private class InternalTimer : Timer
{
private BaseDoor m_Door;
public InternalTimer( BaseDoor door ) : base( TimeSpan.FromSeconds( 20.0 ), TimeSpan.FromSeconds( 10.0 ) )
{
Priority = TimerPriority.OneSecond;
m_Door = door;
}
protected override void OnTick()
{
if ( m_Door.Open && m_Door.IsFreeToClose() )
m_Door.Open = false;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public bool Locked
{
get
{
return m_Locked;
}
set
{
m_Locked = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public DateTime Sealed
{
get
{
return m_Sealed;
}
set
{
m_Sealed = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public DateTime Rigged
{
get
{
return m_Rigged;
}
set
{
m_Rigged = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public uint KeyValue
{
get
{
return m_KeyValue;
}
set
{
m_KeyValue = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public bool Open
{
get
{
return m_Open;
}
set
{
if ( m_Open != value )
{
m_Open = value;
ItemID = m_Open ? m_OpenedID : m_ClosedID;
if ( m_Open )
Location = new Point3D( X + m_Offset.X, Y + m_Offset.Y, Z + m_Offset.Z );
else
Location = new Point3D( X - m_Offset.X, Y - m_Offset.Y, Z - m_Offset.Z );
Effects.PlaySound( this, Map, m_Open ? m_OpenedSound : m_ClosedSound );
if ( m_Open )
m_Timer.Start();
else
m_Timer.Stop();
}
}
}
public bool CanClose()
{
if ( !m_Open )
return true;
Map map = Map;
if ( map == null )
return false;
Point3D p = new Point3D( X - m_Offset.X, Y - m_Offset.Y, Z - m_Offset.Z );
return CheckFit( map, p, 16 );
}
private bool CheckFit( Map map, Point3D p, int height )
{
if ( map == Map.Internal )
return false;
int x = p.X;
int y = p.Y;
int z = p.Z;
Sector sector = map.GetSector( x, y );
List<Item> items = sector.Items;
List<Mobile> mobs = sector.Mobiles;
for ( int i = 0; i < items.Count; ++i )
{
Item item = items[i];
if ( !(item is BaseMulti) && item.ItemID <= TileData.MaxItemValue && item.AtWorldPoint( x, y ) && !(item is BaseDoor) )
{
ItemData id = item.ItemData;
bool surface = id.Surface;
bool impassable = id.Impassable;
if ( (surface || impassable) && (item.Z + id.CalcHeight) > z && (z + height) > item.Z )
return false;
}
}
for ( int i = 0; i < mobs.Count; ++i )
{
Mobile m = mobs[i];
if ( m.Location.X == x && m.Location.Y == y )
{
if ( m.Hidden && m.AccessLevel > AccessLevel.Player )
continue;
if ( !m.Alive )
continue;
if ( (m.Z + 16) > z && (z + height) > m.Z )
return false;
}
}
return true;
}
[CommandProperty( AccessLevel.GameMaster )]
public int OpenedID
{
get
{
return m_OpenedID;
}
set
{
m_OpenedID = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public int ClosedID
{
get
{
return m_ClosedID;
}
set
{
m_ClosedID = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public int OpenedSound
{
get
{
return m_OpenedSound;
}
set
{
m_OpenedSound = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public int ClosedSound
{
get
{
return m_ClosedSound;
}
set
{
m_ClosedSound = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public Point3D Offset
{
get
{
return m_Offset;
}
set
{
m_Offset = value;
}
}
[CommandProperty( AccessLevel.GameMaster )]
public BaseDoor Link
{
get
{
if ( m_Link != null && m_Link.Deleted )
m_Link = null;
return m_Link;
}
set
{
m_Link = value;
}
}
public virtual bool UseChainedFunctionality{ get{ return false; } }
public List<BaseDoor> GetChain()
{
List<BaseDoor> list = new List<BaseDoor>();
BaseDoor c = this;
do
{
list.Add( c );
c = c.Link;
} while ( c != null && !list.Contains( c ) );
return list;
}
public bool IsFreeToClose()
{
if ( !UseChainedFunctionality )
return CanClose();
List<BaseDoor> list = GetChain();
bool freeToClose = true;
for ( int i = 0; freeToClose && i < list.Count; ++i )
freeToClose = list[i].CanClose();
return freeToClose;
}
public void OnTelekinesis( Mobile from )
{
Effects.SendLocationParticles( EffectItem.Create( Location, Map, EffectItem.DefaultDuration ), 0x376A, 9, 32, 5022 );
Effects.PlaySound( Location, Map, 0x1F5 );
ExecuteTrap( from );
if ( this is ThruDoor )
from.SendLocalizedMessage( 501857 ); // This spell won't work on that!
else
Use( from );
}
public virtual bool IsInside( Mobile from )
{
return false;
}
public virtual bool UseLocks()
{
return true;
}
public virtual void BeginDoor( Mobile from )
{
if ( m_Locked && !m_Open && UseLocks() )
{
if ( from.AccessLevel >= AccessLevel.GameMaster )
{
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 502502 ); // That is locked, but you open it with your godly powers.
}
else if ( Key.ContainsKey( from.Backpack, this.KeyValue ) )
{
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 501282 ); // You quickly unlock, open, and relock the door
}
else if ( IsInside( from ) )
{
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 501280 ); // That is locked, but is usable from the inside.
}
else
{
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 502503 ); // That is locked.
return;
}
}
else if ( m_Sealed > DateTime.Now )
{
if ( from.AccessLevel >= AccessLevel.GameMaster )
{
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 502502 ); // That is locked, but you open it with your godly powers.
}
else
{
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 502503 ); // That is locked.
return;
}
}
else if ( m_Rigged > DateTime.Now )
{
ExecuteTrap( from );
}
}
public virtual void Use( Mobile from )
{
BeginDoor( from );
if ( m_Open && !IsFreeToClose() )
return;
if ( m_Open )
OnClosed( from );
else
OnOpened( from );
if ( UseChainedFunctionality )
{
bool open = !m_Open;
List<BaseDoor> list = GetChain();
for ( int i = 0; i < list.Count; ++i )
list[i].Open = open;
}
else
{
Open = !m_Open;
BaseDoor link = this.Link;
if ( m_Open && link != null && !link.Open )
link.Open = true;
}
}
public virtual bool ExecuteTrap( Mobile from )
{
if ( m_TrapType != TrapType.None && m_Rigged > DateTime.Now )
{
Point3D loc = this.GetWorldLocation();
Map facet = this.Map;
if ( from.AccessLevel >= AccessLevel.GameMaster )
{
SendMessageTo( from, "That is trapped, but you open it with your godly powers.", 0x3B2 );
return false;
}
switch ( m_TrapType )
{
case TrapType.ExplosionTrap:
{
SendMessageTo( from, 502999, 0x3B2 ); // You set off a trap!
if ( from.InRange( loc, 3 ) )
{
int damage;
if ( m_TrapLevel > 0 )
damage = Utility.RandomMinMax( 10, 30 ) * m_TrapLevel;
else
damage = m_TrapPower;
Ultima.Damage( from, damage );
// Your skin blisters from the heat!
from.LocalOverheadMessage( Network.MessageType.Regular, 0x2A, 503000 );
}
Effects.SendLocationEffect( loc, facet, 0x36BD, 15, 10 );
Effects.PlaySound( loc, facet, 0x307 );
break;
}
case TrapType.MagicTrap:
{
if ( from.InRange( loc, 1 ) )
from.Damage( m_TrapPower );
Effects.PlaySound( loc, Map, 0x307 );
Effects.SendLocationEffect( new Point3D( loc.X - 1, loc.Y, loc.Z ), Map, 0x36BD, 15 );
Effects.SendLocationEffect( new Point3D( loc.X + 1, loc.Y, loc.Z ), Map, 0x36BD, 15 );
Effects.SendLocationEffect( new Point3D( loc.X, loc.Y - 1, loc.Z ), Map, 0x36BD, 15 );
Effects.SendLocationEffect( new Point3D( loc.X, loc.Y + 1, loc.Z ), Map, 0x36BD, 15 );
Effects.SendLocationEffect( new Point3D( loc.X + 1, loc.Y + 1, loc.Z + 11 ), Map, 0x36BD, 15 );
break;
}
case TrapType.DartTrap:
{
SendMessageTo( from, 502999, 0x3B2 ); // You set off a trap!
if ( from.InRange( loc, 3 ) )
{
int damage;
if ( m_TrapLevel > 0 )
damage = Utility.RandomMinMax( 5, 15 ) * m_TrapLevel;
else
damage = m_TrapPower;
Ultima.Damage( from, damage );
// A dart imbeds itself in your flesh!
from.LocalOverheadMessage( Network.MessageType.Regular, 0x62, 502998 );
}
Effects.PlaySound( loc, facet, 0x223 );
break;
}
case TrapType.PoisonTrap:
{
SendMessageTo( from, 502999, 0x3B2 ); // You set off a trap!
if ( from.InRange( loc, 3 ) )
{
Poison poison;
if ( m_TrapLevel > 0 )
{
poison = Poison.GetPoison( Math.Max( 0, Math.Min( 4, m_TrapLevel - 1 ) ) );
}
else
{
Ultima.Damage( from, m_TrapPower );
poison = Poison.Greater;
}
from.ApplyPoison( from, poison );
// You are enveloped in a noxious green cloud!
from.LocalOverheadMessage( Network.MessageType.Regular, 0x44, 503004 );
}
Effects.SendLocationEffect( loc, facet, 0x113A, 10, 20 );
Effects.PlaySound( loc, facet, 0x231 );
break;
}
}
m_TrapType = TrapType.None;
m_TrapPower = 0;
m_TrapLevel = 0;
return true;
}
return false;
}
public virtual void OnOpened( Mobile from )
{
}
public virtual void OnClosed( Mobile from )
{
}
public override void OnDoubleClick( Mobile from )
{
if ( from is BaseCreature && ( ((BaseCreature)from).AI == AIType.AI_Animal || ((BaseCreature)from).AI == AIType.AI_Timid ) )
from.SendMessage( "Animals cannot use doors!" );
else if ( from.AccessLevel == AccessLevel.Player && !from.InRange( GetWorldLocation(), 2 ) )
from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 1019045 ); // I can't reach that.
else
Use( from );
}
public BaseDoor( int closedID, int openedID, int openedSound, int closedSound, Point3D offset ) : base( closedID )
{
m_OpenedID = openedID;
m_ClosedID = closedID;
m_OpenedSound = openedSound;
m_ClosedSound = closedSound;
m_Offset = offset;
m_Timer = new InternalTimer( this );
Movable = false;
}
public BaseDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
writer.Write( m_KeyValue );
writer.Write( m_Open );
writer.Write( m_Locked );
writer.Write( m_OpenedID );
writer.Write( m_ClosedID );
writer.Write( m_OpenedSound );
writer.Write( m_ClosedSound );
writer.Write( m_Offset );
writer.Write( m_Link );
writer.Write( m_Sealed );
writer.Write( m_Rigged );
writer.Write( (int) m_TrapLevel );
writer.Write( (int) m_TrapPower );
writer.Write( (int) m_TrapType );
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
switch ( version )
{
case 0:
{
m_KeyValue = reader.ReadUInt();
m_Open = reader.ReadBool();
m_Locked = reader.ReadBool();
m_OpenedID = reader.ReadInt();
m_ClosedID = reader.ReadInt();
m_OpenedSound = reader.ReadInt();
m_ClosedSound = reader.ReadInt();
m_Offset = reader.ReadPoint3D();
m_Link = reader.ReadItem() as BaseDoor;
m_Sealed = reader.ReadDateTime();
m_Rigged = reader.ReadDateTime();
m_Timer = new InternalTimer( this );
if ( m_Open )
m_Timer.Start();
m_TrapLevel = reader.ReadInt();
m_TrapPower = reader.ReadInt();
m_TrapType = (TrapType)reader.ReadInt();
break;
}
}
}
}
}

View file

@ -0,0 +1,358 @@
using System;
namespace Server.Items
{
public enum DoorFacing
{
WestCW,
EastCCW,
WestCCW,
EastCW,
SouthCW,
NorthCCW,
SouthCCW,
NorthCW,
SouthSW,
SouthSE,
WestSS,
WestSN
}
public class IronGateShort : BaseDoor
{
[Constructable]
public IronGateShort( DoorFacing facing ) : base( 0x84c + (2 * (int)facing), 0x84d + (2 * (int)facing), 0xEC, 0xF3, BaseDoor.GetOffset( facing ) )
{
}
public IronGateShort( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class IronGate : BaseDoor
{
[Constructable]
public IronGate( DoorFacing facing ) : base( 0x824 + (2 * (int)facing), 0x825 + (2 * (int)facing), 0xEC, 0xF3, BaseDoor.GetOffset( facing ) )
{
}
public IronGate( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class LightWoodGate : BaseDoor
{
[Constructable]
public LightWoodGate( DoorFacing facing ) : base( 0x839 + (2 * (int)facing), 0x83A + (2 * (int)facing), 0xEB, 0xF2, BaseDoor.GetOffset( facing ) )
{
}
public LightWoodGate( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class DarkWoodGate : BaseDoor
{
[Constructable]
public DarkWoodGate( DoorFacing facing ) : base( 0x866 + (2 * (int)facing), 0x867 + (2 * (int)facing), 0xEB, 0xF2, BaseDoor.GetOffset( facing ) )
{
}
public DarkWoodGate( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class MetalDoor : BaseDoor
{
[Constructable]
public MetalDoor( DoorFacing facing ) : base( 0x675 + (2 * (int)facing), 0x676 + (2 * (int)facing), 0xEC, 0xF3, BaseDoor.GetOffset( facing ) )
{
}
public MetalDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class BarredMetalDoor : BaseDoor
{
[Constructable]
public BarredMetalDoor( DoorFacing facing ) : base( 0x685 + (2 * (int)facing), 0x686 + (2 * (int)facing), 0xEC, 0xF3, BaseDoor.GetOffset( facing ) )
{
}
public BarredMetalDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class BarredMetalDoor2 : BaseDoor
{
[Constructable]
public BarredMetalDoor2( DoorFacing facing ) : base( 0x1FED + (2 * (int)facing), 0x1FEE + (2 * (int)facing), 0xEC, 0xF3, BaseDoor.GetOffset( facing ) )
{
}
public BarredMetalDoor2( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class RattanDoor : BaseDoor
{
[Constructable]
public RattanDoor( DoorFacing facing ) : base( 0x695 + (2 * (int)facing), 0x696 + (2 * (int)facing), 0xEB, 0xF2, BaseDoor.GetOffset( facing ) )
{
}
public RattanDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class DarkWoodDoor : BaseDoor
{
[Constructable]
public DarkWoodDoor( DoorFacing facing ) : base( 0x6A5 + (2 * (int)facing), 0x6A6 + (2 * (int)facing), 0xEA, 0xF1, BaseDoor.GetOffset( facing ) )
{
}
public DarkWoodDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class MediumWoodDoor : BaseDoor
{
[Constructable]
public MediumWoodDoor( DoorFacing facing ) : base( 0x6B5 + (2 * (int)facing), 0x6B6 + (2 * (int)facing), 0xEA, 0xF1, BaseDoor.GetOffset( facing ) )
{
}
public MediumWoodDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class MetalDoor2 : BaseDoor
{
[Constructable]
public MetalDoor2( DoorFacing facing ) : base( 0x6C5 + (2 * (int)facing), 0x6C6 + (2 * (int)facing), 0xEC, 0xF3, BaseDoor.GetOffset( facing ) )
{
}
public MetalDoor2( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class LightWoodDoor : BaseDoor
{
[Constructable]
public LightWoodDoor( DoorFacing facing ) : base( 0x6D5 + (2 * (int)facing), 0x6D6 + (2 * (int)facing), 0xEA, 0xF1, BaseDoor.GetOffset( facing ) )
{
}
public LightWoodDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class StrongWoodDoor : BaseDoor
{
[Constructable]
public StrongWoodDoor( DoorFacing facing ) : base( 0x6E5 + (2 * (int)facing), 0x6E6 + (2 * (int)facing), 0xEA, 0xF1, BaseDoor.GetOffset( facing ) )
{
}
public StrongWoodDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}

View file

@ -0,0 +1,253 @@
using System;
using System.Collections;
using Server;
using Server.Multis;
using Server.Gumps;
using System.Collections.Generic;
using Server.ContextMenus;
namespace Server.Items
{
public class MetalHouseDoor : BaseHouseDoor
{
[Constructable]
public MetalHouseDoor( DoorFacing facing ) : base( facing, 0x675 + (2 * (int)facing), 0x676 + (2 * (int)facing), 0xEC, 0xF3, BaseDoor.GetOffset( facing ) )
{
}
public MetalHouseDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class DarkWoodHouseDoor : BaseHouseDoor
{
[Constructable]
public DarkWoodHouseDoor( DoorFacing facing ) : base( facing, 0x6A5 + (2 * (int)facing), 0x6A6 + (2 * (int)facing), 0xEA, 0xF1, BaseDoor.GetOffset( facing ) )
{
}
public DarkWoodHouseDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class GenericHouseDoor : BaseHouseDoor
{
[Constructable]
public GenericHouseDoor( DoorFacing facing, int baseItemID, int openedSound, int closedSound ) : this( facing, baseItemID, openedSound, closedSound, true )
{
}
[Constructable]
public GenericHouseDoor( DoorFacing facing, int baseItemID, int openedSound, int closedSound, bool autoAdjust )
: base( facing, baseItemID + (autoAdjust ? (2 * (int)facing) : 0), baseItemID + 1 + (autoAdjust ? (2 * (int)facing) : 0), openedSound, closedSound, BaseDoor.GetOffset( facing ) )
{
}
public GenericHouseDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public abstract class BaseHouseDoor : BaseDoor, ISecurable
{
private DoorFacing m_Facing;
private SecureLevel m_Level;
[CommandProperty( AccessLevel.GameMaster )]
public DoorFacing Facing
{
get{ return m_Facing; }
set{ m_Facing = value; }
}
[CommandProperty( AccessLevel.GameMaster )]
public SecureLevel Level
{
get{ return m_Level; }
set{ m_Level = value; }
}
public override void GetContextMenuEntries( Mobile from, List<ContextMenuEntry> list )
{
base.GetContextMenuEntries( from, list );
SetSecureLevelEntry.AddTo( from, this, list );
}
public BaseHouseDoor( DoorFacing facing, int closedID, int openedID, int openedSound, int closedSound, Point3D offset ) : base( closedID, openedID, openedSound, closedSound, offset )
{
m_Facing = facing;
m_Level = SecureLevel.Anyone;
}
public BaseHouse FindHouse()
{
Point3D loc;
if ( Open )
loc = new Point3D( X - Offset.X, Y - Offset.Y, Z - Offset.Z );
else
loc = this.Location;
return BaseHouse.FindHouseAt( loc, Map, 20 );
}
public bool CheckAccess( Mobile m )
{
BaseHouse house = FindHouse();
if ( house == null )
return false;
if ( !house.IsAosRules )
return true;
if ( house.Public ? house.IsBanned( m ) : !house.HasAccess( m ) )
return false;
return house.HasSecureAccess( m, m_Level );
}
public override void OnOpened( Mobile from )
{
BaseHouse house = FindHouse();
if ( house != null && house.IsFriend( from ) && from.AccessLevel == AccessLevel.Player && house.RefreshDecay() )
from.SendLocalizedMessage( 1043293 ); // Your house's age and contents have been refreshed.
if ( house != null && house.Public && !house.IsFriend( from ) )
house.Visits++;
}
public override bool UseLocks()
{
BaseHouse house = FindHouse();
return ( house == null || !house.IsAosRules );
}
public override void Use( Mobile from )
{
if ( !CheckAccess( from ) )
from.SendLocalizedMessage( 1061637 ); // You are not allowed to access this.
else
base.Use( from );
}
public BaseHouseDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 1 ); // version
writer.Write( (int) m_Level );
writer.Write( (int) m_Facing );
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
switch ( version )
{
case 1:
{
m_Level = (SecureLevel)reader.ReadInt();
goto case 0;
}
case 0:
{
if ( version < 1 )
m_Level = SecureLevel.Anyone;
m_Facing = (DoorFacing)reader.ReadInt();
break;
}
}
}
public override bool IsInside( Mobile from )
{
int x,y,w,h;
const int r = 2;
const int bs = r*2+1;
const int ss = r+1;
switch ( m_Facing )
{
case DoorFacing.WestCW:
case DoorFacing.EastCCW: x = -r; y = -r; w = bs; h = ss; break;
case DoorFacing.EastCW:
case DoorFacing.WestCCW: x = -r; y = 0; w = bs; h = ss; break;
case DoorFacing.SouthCW:
case DoorFacing.NorthCCW: x = -r; y = -r; w = ss; h = bs; break;
case DoorFacing.NorthCW:
case DoorFacing.SouthCCW: x = 0; y = -r; w = ss; h = bs; break;
//No way to test the 'insideness' of SE Sliding doors on OSI, so leaving them default to false until furthur information gained
default: return false;
}
int rx = from.X - X;
int ry = from.Y - Y;
int az = Math.Abs( from.Z - Z );
return ( rx >= x && rx < (x+w) && ry >= y && ry < (y+h) && az <= 4 );
}
}
}

View file

@ -0,0 +1,60 @@
using System;
namespace Server.Items
{
public class PortcullisNS : BaseDoor
{
public override bool UseChainedFunctionality{ get{ return true; } }
[Constructable]
public PortcullisNS() : base( 0x6F5, 0x6F5, 0xF0, 0xEF, new Point3D( 0, 0, 20 ) )
{
}
public PortcullisNS( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class PortcullisEW : BaseDoor
{
public override bool UseChainedFunctionality{ get{ return true; } }
[Constructable]
public PortcullisEW() : base( 0x6F6, 0x6F6, 0xF0, 0xEF, new Point3D( 0, 0, 20 ) )
{
}
public PortcullisEW( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer )
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader )
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}

View file

@ -0,0 +1,186 @@
using System;
namespace Server.Items
{
public class SecretBookDoor : BaseDoor
{
[Constructable]
public SecretBookDoor( DoorFacing facing ) : base( 0x20F8 + (2 * (int)facing), 0x20F9 + (2 * (int)facing), 0x02F, 0x02E, BaseDoor.GetOffset( facing ) )
{
}
public SecretBookDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class SecretStoneDoor1 : BaseDoor
{
[Constructable]
public SecretStoneDoor1( DoorFacing facing ) : base( 0xE8 + (2 * (int)facing), 0xE9 + (2 * (int)facing), 0xED, 0xF4, BaseDoor.GetOffset( facing ) )
{
}
public SecretStoneDoor1( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class SecretDungeonDoor : BaseDoor
{
[Constructable]
public SecretDungeonDoor( DoorFacing facing ) : base( 0x314 + (2 * (int)facing), 0x315 + (2 * (int)facing), 0xED, 0xF4, BaseDoor.GetOffset( facing ) )
{
}
public SecretDungeonDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class SecretStoneDoor2 : BaseDoor
{
[Constructable]
public SecretStoneDoor2( DoorFacing facing ) : base( 0x324 + (2 * (int)facing), 0x325 + (2 * (int)facing), 0xED, 0xF4, BaseDoor.GetOffset( facing ) )
{
}
public SecretStoneDoor2( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class SecretWoodenDoor : BaseDoor
{
[Constructable]
public SecretWoodenDoor( DoorFacing facing ) : base( 0x334 + (2 * (int)facing), 0x335 + (2 * (int)facing), 0xED, 0xF4, BaseDoor.GetOffset( facing ) )
{
}
public SecretWoodenDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class SecretLightWoodDoor : BaseDoor
{
[Constructable]
public SecretLightWoodDoor( DoorFacing facing ) : base( 0x344 + (2 * (int)facing), 0x345 + (2 * (int)facing), 0xED, 0xF4, BaseDoor.GetOffset( facing ) )
{
}
public SecretLightWoodDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
public class SecretStoneDoor3 : BaseDoor
{
[Constructable]
public SecretStoneDoor3( DoorFacing facing ) : base( 0x354 + (2 * (int)facing), 0x355 + (2 * (int)facing), 0xED, 0xF4, BaseDoor.GetOffset( facing ) )
{
}
public SecretStoneDoor3( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}

View file

@ -0,0 +1,228 @@
using System;
using System.Collections.Generic;
using Server.Commands;
using Server.Network;
using Server.Targeting;
using Server.Mobiles;
namespace Server.Items
{
public class ThruDoor : BaseDoor
{
[Constructable]
public ThruDoor() : this( DoorFacing.WestCW )
{
}
[Constructable]
public ThruDoor( DoorFacing WestCW ) : base( 1661, 1661, 0xEC, 0xEC, BaseDoor.GetOffset( WestCW ) )
{
}
public bool isMetal( Item door )
{
if ( door.ItemID == 1661 ||
door.ItemID == 1663 ||
door.ItemID == 1741 ||
door.ItemID == 1743 ||
door.ItemID == 1677 ||
door.ItemID == 1679 ||
door.ItemID == 8181 ||
door.ItemID == 8183 ||
door.ItemID == 2092 ||
door.ItemID == 2094 ||
door.ItemID == 2132 ||
door.ItemID == 2134 ||
door.ItemID == 1653 ||
door.ItemID == 1655 ||
door.ItemID == 1733 ||
door.ItemID == 1735 ||
door.ItemID == 1669 ||
door.ItemID == 1671 ||
door.ItemID == 8173 ||
door.ItemID == 8175 ||
door.ItemID == 2084 ||
door.ItemID == 2086 ||
door.ItemID == 2124 ||
door.ItemID == 2126
)
return true;
return false;
}
public bool isWood( Item door )
{
if ( door.ItemID == 1717 ||
door.ItemID == 1719 ||
door.ItemID == 1749 ||
door.ItemID == 1751 ||
door.ItemID == 1703 ||
door.ItemID == 1701 ||
door.ItemID == 1765 ||
door.ItemID == 1767 ||
door.ItemID == 1709 ||
door.ItemID == 1711 ||
door.ItemID == 1773 ||
door.ItemID == 1775 ||
door.ItemID == 1725 ||
door.ItemID == 1727 ||
door.ItemID == 1757 ||
door.ItemID == 1759
)
return true;
return false;
}
public bool isCloth( Item door )
{
if ( door.ItemID == 0x0DED ||
door.ItemID == 0x0DEE
)
return true;
return false;
}
public bool isFence( Item door )
{
if ( door.ItemID == 2158 ||
door.ItemID == 2160 ||
door.ItemID == 2150 ||
door.ItemID == 2152 ||
door.ItemID == 2105 ||
door.ItemID == 2107 ||
door.ItemID == 2113 ||
door.ItemID == 2115
)
return true;
return false;
}
public bool isEW( Item door )
{
if ( door.ItemID == 1661 ||
door.ItemID == 1663 ||
door.ItemID == 1741 ||
door.ItemID == 1743 ||
door.ItemID == 1677 ||
door.ItemID == 1679 ||
door.ItemID == 8181 ||
door.ItemID == 8183 ||
door.ItemID == 2092 ||
door.ItemID == 2094 ||
door.ItemID == 2132 ||
door.ItemID == 2134 ||
door.ItemID == 1709 ||
door.ItemID == 1711 ||
door.ItemID == 1773 ||
door.ItemID == 1775 ||
door.ItemID == 1725 ||
door.ItemID == 1727 ||
door.ItemID == 1757 ||
door.ItemID == 1759 ||
door.ItemID == 0x0DEE ||
door.ItemID == 2158 ||
door.ItemID == 2160 ||
door.ItemID == 2113 ||
door.ItemID == 2115
)
return true;
return false;
}
public bool isNS( Item door )
{
if ( door.ItemID == 1717 ||
door.ItemID == 1719 ||
door.ItemID == 1749 ||
door.ItemID == 1751 ||
door.ItemID == 1703 ||
door.ItemID == 1701 ||
door.ItemID == 1765 ||
door.ItemID == 1767 ||
door.ItemID == 1653 ||
door.ItemID == 1655 ||
door.ItemID == 1733 ||
door.ItemID == 1735 ||
door.ItemID == 1669 ||
door.ItemID == 1671 ||
door.ItemID == 8173 ||
door.ItemID == 8175 ||
door.ItemID == 2084 ||
door.ItemID == 2086 ||
door.ItemID == 2124 ||
door.ItemID == 2126 ||
door.ItemID == 0x0DED ||
door.ItemID == 2150 ||
door.ItemID == 2152 ||
door.ItemID == 2105 ||
door.ItemID == 2107
)
return true;
return false;
}
public Point3D loc( Item door, Mobile from )
{
Point3D d = door.Location;
Point3D p = d;
if ( isNS( door ) && from.Y > door.Y )
d = new Point3D( p.X, p.Y-1, p.Z );
else if ( isNS( door ) && from.Y < door.Y )
d = new Point3D( p.X, p.Y+1, p.Z );
else if ( isEW( door ) && from.X < door.X )
d = new Point3D( p.X+1, p.Y, p.Z );
else if ( isEW( door ) && from.X > door.X )
d = new Point3D( p.X-1, p.Y, p.Z );
return d;
}
public override void Use( Mobile from )
{
if ( from is PlayerMobile )
{
BeginDoor( from );
int sound = 0;
if ( isMetal( this ) )
sound = 0xEC;
else if ( isWood( this ) )
sound = 0xEA;
else if ( isCloth( this ) )
sound = 0x48;
else if ( isFence( this ) )
sound = 0xEB;
Point3D d = loc( this, from );
Server.Mobiles.BaseCreature.TeleportPets( from, d, from.Map );
if ( ItemID != 8611 ){ from.PlaySound( sound ); }
from.MoveToWorld( d, from.Map );
}
}
public ThruDoor( Serial serial ) : base( serial )
{
}
public override void Serialize( GenericWriter writer ) // Default Serialize method
{
base.Serialize( writer );
writer.Write( (int) 0 ); // version
}
public override void Deserialize( GenericReader reader ) // Default Deserialize method
{
base.Deserialize( reader );
int version = reader.ReadInt();
}
}
}