Ejemplo n.º 1
0
 public LocalizedGossipMenuItem(IGossipAction action, GossipMenu subMenu, RealmLangKey msgKey,
                                params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     this.Action  = action;
     this.SubMenu = subMenu;
 }
Ejemplo n.º 2
0
 public LocalizedGossipMenuItem(GossipMenuIcon icon, RealmLangKey langKey,
                                params LocalizedGossipMenuItem[] items)
     : this(langKey)
 {
     this.Icon    = icon;
     this.SubMenu = new GossipMenu((GossipMenuItemBase[])items);
 }
Ejemplo n.º 3
0
 public LocalizedGossipMenuItem(GossipActionHandler callback, GossipActionDecider decider,
                                RealmLangKey confirmLangKey, RealmLangKey msgKey, params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     this.ConfirmText = new TranslatableItem(confirmLangKey, new object[0]);
     this.Action      = (IGossipAction) new NonNavigatingDecidingGossipAction(callback, decider);
 }
Ejemplo n.º 4
0
 public LocalizedGossipMenuItem(GossipMenuIcon icon, RealmLangKey langKey,
                                params LocalizedGossipMenuItem[] items)
     : this(langKey)
 {
     Icon    = icon;
     SubMenu = new GossipMenu(items);
 }
Ejemplo n.º 5
0
 public QuitGossipMenuItem(GossipMenuIcon icon, RealmLangKey text, params GossipMenuItem[] items)
     : base(icon, text, (object[])items)
 {
     this.Action =
         (IGossipAction) new NonNavigatingGossipAction((GossipActionHandler)(convo =>
                                                                             convo.Character.GossipConversation.StayOpen = false));
 }
Ejemplo n.º 6
0
 public LocalizedGossipMenuItem(GossipActionHandler callback, RealmLangKey confirmLangKey, RealmLangKey msgKey,
                                params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     ConfirmText = new TranslatableItem(confirmLangKey);
     Action      = new NonNavigatingGossipAction(callback);
 }
Ejemplo n.º 7
0
 public QuitGossipMenuItem(RealmLangKey msg)
     : base(msg, new object[0])
 {
     this.Action =
         (IGossipAction) new NonNavigatingGossipAction((GossipActionHandler)(convo =>
                                                                             convo.Character.GossipConversation.StayOpen = false));
 }
Ejemplo n.º 8
0
 public QuitGossipMenuItem(GossipMenu subMenu, RealmLangKey msg, params object[] args)
     : base(subMenu, msg, args)
 {
     this.Action =
         (IGossipAction) new NonNavigatingGossipAction((GossipActionHandler)(convo =>
                                                                             convo.Character.GossipConversation.StayOpen = false));
 }
Ejemplo n.º 9
0
 public QuitGossipMenuItem(RealmLangKey msg, params object[] args)
     : base(msg, args)
 {
     Action =
         new NonNavigatingGossipAction(convo =>
                                       convo.Character.GossipConversation.StayOpen = false);
 }
Ejemplo n.º 10
0
 public QuitGossipMenuItem(GossipMenuIcon icon, RealmLangKey text, params GossipMenuItem[] items)
     : base(icon, text, items)
 {
     Action =
         new NonNavigatingGossipAction(convo =>
                                       convo.Character.GossipConversation.StayOpen = false);
 }
Ejemplo n.º 11
0
 public LocalizedGossipMenuItem(GossipMenuIcon icon, IGossipAction action, RealmLangKey msgKey,
                                params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     this.Icon   = icon;
     this.Action = action;
 }
Ejemplo n.º 12
0
 public QuitGossipMenuItem(RealmLangKey text, params GossipMenuItem[] items)
     : base(text, items)
 {
     Action = new NonNavigatingGossipAction((convo) =>
     {
         convo.Character.GossipConversation.StayOpen = false;
     });
 }
Ejemplo n.º 13
0
 public QuitGossipMenuItem(GossipMenu subMenu, RealmLangKey msg, params object[] args)
     : base(subMenu, msg, args)
 {
     Action = new NonNavigatingGossipAction((convo) =>
     {
         convo.Character.GossipConversation.StayOpen = false;
     });
 }
Ejemplo n.º 14
0
 public QuitGossipMenuItem(RealmLangKey msg)
     : base(msg, new object[0])
 {
     Action = new NonNavigatingGossipAction((convo) =>
     {
         convo.Character.GossipConversation.StayOpen = false;
     });
 }
Ejemplo n.º 15
0
 public LocalizedGossipMenuItem(GossipMenu subMenu, RealmLangKey msgKey, params object[] msgArgs)
     : this(msgKey, new object[3]
 {
     (object)msgArgs,
     null,
     (object)subMenu
 })
 {
 }
Ejemplo n.º 16
0
 public QuitGossipMenuItem(RealmLangKey text, GossipActionHandler callback, params GossipMenuItem[] items)
     : base(text, (object[])items)
 {
     this.Action = (IGossipAction) new NonNavigatingGossipAction((GossipActionHandler)(convo =>
     {
         convo.Character.GossipConversation.StayOpen = false;
         callback(convo);
     }));
 }
Ejemplo n.º 17
0
 public QuitGossipMenuItem(GossipMenuIcon icon, GossipActionHandler callback, RealmLangKey msg, params object[] args)
     : base(icon, msg, args)
 {
     Action = new NonNavigatingGossipAction((convo) =>
     {
         convo.Character.GossipConversation.StayOpen = false;
         callback(convo);
     });
 }
Ejemplo n.º 18
0
 public QuitGossipMenuItem(GossipActionHandler callback, RealmLangKey msg = RealmLangKey.Done,
                           params object[] args)
     : base(msg, args)
 {
     this.Action = (IGossipAction) new NonNavigatingGossipAction((GossipActionHandler)(convo =>
     {
         convo.Character.GossipConversation.StayOpen = false;
         callback(convo);
     }));
 }
Ejemplo n.º 19
0
 /// <summary>
 /// Sends a system message.
 /// </summary>
 /// <param name="targets">an enumerable collection of players to send the message to</param>
 /// <param name="message">the message to send</param>
 public static void SendSystemMessage(this IEnumerable <Character> targets, RealmLangKey langKey, params object[] args)
 {
     foreach (var target in targets)
     {
         if (target != null)
         {
             target.SendSystemMessage(langKey, args);
         }
     }
 }
Ejemplo n.º 20
0
		public LocalizedGossipMenuItem(IGossipAction action, GossipMenu subMenu, RealmLangKey msgKey, params object[] msgArgs)
			: this(msgKey, msgArgs)
		{
			Action = action;
			SubMenu = subMenu;
		}
Ejemplo n.º 21
0
 public static void Broadcast(RealmLangKey key, params object[] args)
 {
     Broadcast(null, RealmLocalizer.Instance.Translate(key, args));
 }
Ejemplo n.º 22
0
 public LocalizedGossipMenuItem(GossipActionHandler callback, GossipActionDecider decider, RealmLangKey msgKey,
                                params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     this.Action = (IGossipAction) new NonNavigatingDecidingGossipAction(callback, decider);
 }
Ejemplo n.º 23
0
		public LocalizedGossipMenuItem(RealmLangKey msgKey, params object[] msgArgs)
			: this(GossipMenuIcon.Talk, new TranslatableItem(msgKey, msgArgs))
		{
		}
Ejemplo n.º 24
0
		public static string Translate(this CmdTrigger<RealmServerCmdArgs> trigger, RealmLangKey key, params object[] args)
		{
			return RealmLocalizer.Instance.Translate(trigger.GetLocale(), key, args);
		}
Ejemplo n.º 25
0
 public LocalizedGossipMenuItem(RealmLangKey msgKey, params object[] msgArgs)
     : this(GossipMenuIcon.Talk, new TranslatableItem(msgKey, msgArgs))
 {
 }
Ejemplo n.º 26
0
 public void AddQuitMenuItem(RealmLangKey msg, params object[] args)
 {
     AddItem(new QuitGossipMenuItem(msg, args));
 }
Ejemplo n.º 27
0
		public void AddQuitMenuItem(RealmLangKey msg, params object[] args)
		{
			AddItem(new QuitGossipMenuItem(msg, args));
		}
Ejemplo n.º 28
0
		//public LocalizedGossipMenuItem(GossipActionHandler callback, RealmLangKey msgKey, params LocalizedGossipMenuItem[] items)
		//    : this(new TranslatableItem(msgKey))
		//{
		//    Action = new DefaultGossipAction(callback);
		//    SubMenu = new GossipMenu(items);
		//}

		public LocalizedGossipMenuItem(GossipMenu subMenu, RealmLangKey msgKey, params object[] msgArgs)
			: this(msgKey, msgArgs, (IGossipAction)null, subMenu)
		{
		}
Ejemplo n.º 29
0
 public LocalizedGossipMenuItem(RealmLangKey msgKey)
 {
     this.Text = new TranslatableItem(msgKey, new object[0]);
 }
Ejemplo n.º 30
0
 public LocalizedGossipMenuItem(RealmLangKey msgKey, params LocalizedGossipMenuItem[] items)
     : this(msgKey)
 {
     this.SubMenu = new GossipMenu((GossipMenuItemBase[])items);
 }
Ejemplo n.º 31
0
		public LocalizedGossipMenuItem(GossipMenuIcon icon, RealmLangKey langKey, params LocalizedGossipMenuItem[] items)
			: this(langKey)
		{
			Icon = icon;
			SubMenu = new GossipMenu(items);
		}
Ejemplo n.º 32
0
		public LocalizedGossipMenuItem(RealmLangKey msgKey, params LocalizedGossipMenuItem[] items)
			: this(msgKey)
		{
			SubMenu = new GossipMenu(items);
		}
Ejemplo n.º 33
0
 public static void Broadcast(IChatter broadCaster, RealmLangKey key, params object[] args)
 {
     Broadcast(broadCaster, RealmLocalizer.Instance.Translate(key, args));
 }
Ejemplo n.º 34
0
		/// <summary>
		/// Sends a message to the client.
		/// </summary>
		public void SendSystemMessage(RealmLangKey key, params object[] args)
		{
			ChatMgr.SendSystemMessage(this, RealmLocalizer.Instance.Translate(Locale, key, args));
		}
Ejemplo n.º 35
0
		public void AddQuitMenuItem(RealmLangKey msg = RealmLangKey.Done)
		{
			AddItem(new QuitGossipMenuItem(msg, new object[0]));
		}
Ejemplo n.º 36
0
		/// <summary>
		/// Sends a system message.
		/// </summary>
		/// <param name="targets">an enumerable collection of players to send the message to</param>
		/// <param name="message">the message to send</param>
		public static void SendSystemMessage(this IEnumerable<Character> targets, RealmLangKey langKey, params object[] args)
		{
			foreach (var target in targets)
			{
				if (target != null)
				{
					target.SendSystemMessage(langKey, args);
				}
			}
		}
Ejemplo n.º 37
0
		public void AddQuitMenuItem(GossipActionHandler callback, RealmLangKey msg = RealmLangKey.Done, params object[] args)
		{
			AddItem(new QuitGossipMenuItem(callback, msg, args));
		}
Ejemplo n.º 38
0
 public static void Broadcast(RealmLangKey key, params object[] args)
 {
     Broadcast(null, RealmLocalizer.Instance.Translate(key, args));
 }
Ejemplo n.º 39
0
		public static void ReplyFormat(this CmdTrigger<RealmServerCmdArgs> trigger, RealmLangKey key, params object[] args)
		{
			trigger.ReplyFormat(RealmLocalizer.Instance.Translate(trigger.GetLocale(), key, args));
		}
Ejemplo n.º 40
0
		public LocalizedGossipMenuItem(GossipMenuIcon icon, RealmLangKey langKey, GossipActionHandler callback)
			: this(langKey)
		{
			Icon = icon;
			Action = new DefaultGossipAction(callback);
		}
Ejemplo n.º 41
0
 public LocalizedGossipMenuItem(IGossipAction action, RealmLangKey confirmLangKey, RealmLangKey msgKey,
                                params object[] msgArgs)
     : this(action, msgKey, msgArgs)
 {
     this.ConfirmText = new TranslatableItem(confirmLangKey, new object[0]);
 }
Ejemplo n.º 42
0
		public QuitGossipMenuItem(GossipMenuIcon icon, RealmLangKey text, params GossipMenuItem[] items)
			: base(icon, text, items)
		{
			Action = new NonNavigatingGossipAction((convo) =>
			{
				convo.Character.GossipConversation.StayOpen = false;
			});
		}
Ejemplo n.º 43
0
		public LocalizedGossipMenuItem(GossipActionHandler callback, RealmLangKey confirmLangKey, RealmLangKey msgKey, params object[] msgArgs)
			: this(msgKey, msgArgs)
		{
			ConfirmText = new TranslatableItem(confirmLangKey);
			Action = new NonNavigatingGossipAction(callback);
		}
Ejemplo n.º 44
0
		public QuitGossipMenuItem(GossipMenuIcon icon, GossipActionHandler callback, RealmLangKey msg, params object[] args)
			: base(icon, msg, args)
		{
			Action = new NonNavigatingGossipAction((convo) =>
			{
				convo.Character.GossipConversation.StayOpen = false;
				callback(convo);
			});
		}
Ejemplo n.º 45
0
		public LocalizedGossipMenuItem(GossipMenuIcon icon, IGossipAction action, RealmLangKey msgKey, params object[] msgArgs)
			: this(msgKey, msgArgs)
		{
			Icon = icon;
			Action = action;
		}
Ejemplo n.º 46
0
		public LocalizedGossipMenuItem(GossipActionHandler callback, GossipMenu subMenu, RealmLangKey msgKey, params object[] msgArgs)
			: this(msgKey, msgArgs)
		{
			Action = new NonNavigatingGossipAction(callback);
			SubMenu = subMenu;
		}
Ejemplo n.º 47
0
		public LocalizedGossipMenuItem(GossipMenuIcon icon, GossipActionHandler callback, RealmLangKey msgKey, params object[] msgArgs)
			: this(msgKey, msgArgs)
		{
			Icon = icon;
			Action = new NonNavigatingGossipAction(callback);
		}
Ejemplo n.º 48
0
		public LocalizedGossipMenuItem(RealmLangKey msgKey)
		{
			Text = new TranslatableItem(msgKey);
		}
Ejemplo n.º 49
0
 public LocalizedGossipMenuItem(GossipMenuIcon icon, GossipActionHandler callback, RealmLangKey msgKey,
                                params object[] msgArgs)
     : this(msgKey, msgArgs)
 {
     this.Icon   = icon;
     this.Action = (IGossipAction) new NonNavigatingGossipAction(callback);
 }
Ejemplo n.º 50
0
		public QuitGossipMenuItem(GossipMenuIcon type = GossipMenuIcon.Talk, RealmLangKey msg = RealmLangKey.Done)
			: base(type, msg, new object[0])
		{
		}
Ejemplo n.º 51
0
 public void AddQuitMenuItem(RealmLangKey msg = RealmLangKey.Done)
 {
     AddItem(new QuitGossipMenuItem(msg, new object[0]));
 }
Ejemplo n.º 52
0
		public QuitGossipMenuItem(GossipMenuIcon type, RealmLangKey msg, params object[] args)
			: base(type, msg, args)
		{
		}
Ejemplo n.º 53
0
 public void AddQuitMenuItem(GossipActionHandler callback, RealmLangKey msg = RealmLangKey.Done, params object[] args)
 {
     AddItem(new QuitGossipMenuItem(callback, msg, args));
 }
Ejemplo n.º 54
0
		public QuitGossipMenuItem(RealmLangKey msg)
			: base(msg, new object[0])
		{
			Action = new NonNavigatingGossipAction((convo) =>
			{
				convo.Character.GossipConversation.StayOpen = false;
			});
		}
Ejemplo n.º 55
0
		public void Notify(RealmLangKey key, params object[] args)
		{
			Notify(RealmLocalizer.Instance.Translate(Locale, key, args));
		}
Ejemplo n.º 56
0
		public QuitGossipMenuItem(RealmLangKey text, GossipActionHandler callback, params GossipMenuItem[] items)
			: base(text, items)
		{
			Action = new NonNavigatingGossipAction((convo) =>
			{
				convo.Character.GossipConversation.StayOpen = false;
				callback(convo);
			});
		}
Ejemplo n.º 57
0
		/// <summary>
		/// Sends the amount of experience gained to the characters combat log.
		/// </summary>
		/// <param name="target">the character to receieve the combat log message</param>
		/// <param name="message">the message to display in the characters combat log</param>
		public static void SendCombatLogExperienceMessage(IPacketReceiver target, ClientLocale locale, RealmLangKey key, params object[] args)
		{
			using (var packet = CreateCharChatMessage(ChatMsgType.CombatXPGain, ChatLanguage.Universal, EntityId.Zero, EntityId.Zero, null,
				RealmLocalizer.Instance.Translate(locale, key, args), ChatTag.None))
			{
				target.Send(packet);
			}
		}
Ejemplo n.º 58
0
		public QuitGossipMenuItem(GossipMenu subMenu, RealmLangKey msg, params object[] args)
			: base(subMenu, msg, args)
		{
			Action = new NonNavigatingGossipAction((convo) =>
			{
				convo.Character.GossipConversation.StayOpen = false;
			});
		}
Ejemplo n.º 59
0
 public static void Broadcast(IChatter broadCaster, RealmLangKey key, params object[] args)
 {
     Broadcast(broadCaster, RealmLocalizer.Instance.Translate(key, args));
 }
Ejemplo n.º 60
0
		public LocalizedGossipMenuItem(GossipMenuIcon icon, RealmLangKey langKey, IGossipAction action)
			: this(langKey)
		{
			Icon = icon;
			Action = action;
		}