Modding:Wishes: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Modding Info}}
{{Modding Info}}{{Modding Topic Prerequisites | Modding:C Sharp Scripting}}


{{Betamoddingcontent}}
To create a wish, you define a <code>WishCommand</code> attribute on a public method.  This method should either be void or bool. The enclosing class must also have the <code>HasWishCommand</code> attribute
 
Creating your own wishes requires 2.0.200.24 or greater.
 
To create a wish, you define a <code>XRL.Wish.WishCommand</code> attribute on a public method.  This method should either be void or bool.


<syntaxhighlight lang="csharp">
<syntaxhighlight lang="csharp">
using XRL.Wish;


[HasWishCommand]
public class MyWishHandler
public class MyWishHandler
{
{
   // Handles "testwish:foo" or "testwish foo" as a wish command
   // Handles "testwish:foo" or "testwish foo" as a wish command
   [XRL.Wish.WishCommand(Command = "testwish")]
   [WishCommand(Command = "testwish")]
   public static bool TestWishHandler(string rest)
   public static bool TestWishHandler(string rest)
   {
   {
Line 21: Line 19:


   // Handles "testwish" with nothing else! (no string param)
   // Handles "testwish" with nothing else! (no string param)
   [XRL.Wish.WishCommand(Command = "testwish")]
   [WishCommand(Command = "testwish")]
   public static void TestWishHandler()
   public static void TestWishHandler()
   {
   {
Line 32: Line 30:


   // no command -- uses the method name by default!
   // no command -- uses the method name by default!
   [XRL.Wish.WishCommand]
   [WishCommand]
   public void inc()
   public void inc()
   {
   {
Line 38: Line 36:
   }
   }


   [XRL.Wish.WishCommand]
   [WishCommand]
   public void dec()
   public void dec()
   {
   {
Line 44: Line 42:
   }
   }


   [XRL.Wish.WishCommand(Regex = @"other fancy match \d things"]
   [WishCommand(Regex = @"other fancy match \d things"]
   public void Handle(System.Text.RegularExpression.Match match)
   public void Handle(System.Text.RegularExpression.Match match)
   {
   {
Line 54: Line 52:


The regular expression passed to the attribute is parsed using case insensitive matching.
The regular expression passed to the attribute is parsed using case insensitive matching.
[[Category:Modding]]
 
[[Category:Beta Modding]]
For another example of wish command, refer to the [[Modding:Tiles#Creating_a_Player-Tile]] topic.
[[Category:Script Modding]]
{{Modding Navbox}}
{{Modding Navbox}}

Latest revision as of 19:03, 24 March 2021

This page is about modding. See the modding overview for an abstract on modding.
This page is about modding. See the modding overview for an abstract on modding.
For best results, it's recommended to have read the following topics before this one:

To create a wish, you define a WishCommand attribute on a public method. This method should either be void or bool. The enclosing class must also have the HasWishCommand attribute

using XRL.Wish;

[HasWishCommand]
public class MyWishHandler
{
  // Handles "testwish:foo" or "testwish foo" as a wish command
  [WishCommand(Command = "testwish")]
  public static bool TestWishHandler(string rest)
  {
     Popup.Show("Matched: " + rest);
     // if we dont return true, other wishes will also parse this wish message
     return true;
  }

  // Handles "testwish" with nothing else! (no string param)
  [WishCommand(Command = "testwish")]
  public static void TestWishHandler()
  {
     Popup.Show("Matched it the short way");
     // if we return void, it assumes we handled it
  }

  // showing of non-static also!
  public int count = 0;

  // no command -- uses the method name by default!
  [WishCommand]
  public void inc()
  {
    Popup.Show(count++);
  }

  [WishCommand]
  public void dec()
  {
    Popup.Show(count--);
  }

  [WishCommand(Regex = @"other fancy match \d things"]
  public void Handle(System.Text.RegularExpression.Match match)
  {
    Popup.Show(match.Groups[0].ToString());
  }

}

The regular expression passed to the attribute is parsed using case insensitive matching.

For another example of wish command, refer to the Modding:Tiles#Creating_a_Player-Tile topic.