示例#1
0
    /// <summary>
    /// Get the Powershell version number.
    /// </summary>
    /// <returns></returns>
    public string Version()
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("Version");

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to get the version number of the powershell plugin");
      }
      return ipcResponse.Get<string>(0);
    }
示例#2
0
    /// <summary>
    /// Output a message on the screen.
    /// </summary>
    /// <param name="what">The message</param>
    /// <param name="elapse">For how long, (ms)</param>
    /// <param name="fadeout">The fadeout speed.</param>
    /// <returns></returns>
    public bool Say(string what, uint elapse, uint fadeout )
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("Say");
      ipcRequest.Add(what);
      ipcRequest.Add(elapse );
      ipcRequest.Add(fadeout);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to get the version number of the powershell plugin");
      }
      var i = ipcResponse.Get<int>(0);
      return i == 1;
    }
示例#3
0
    /// <summary>
    /// Get a command at a certain index.
    /// We throw if the value is out of range, use GetCommandCount(...)
    /// Command #0 is the full path of this script.
    /// </summary>
    /// <param name="index">the index we want</param>
    /// <returns>The command</returns>
    public string GetCommand( uint index )
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("GetCommand");
      ipcRequest.Add(index);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception( "Unable to get the command at index." );
      }

      if(ipcResponse.IsInt(0) )
      {
        if( 0 == ipcResponse.Get<int>(0) )
        {
          throw new ArgumentOutOfRangeException( nameof(index), "The command you are trying to get does not exist.");
        }

        //  not sure what that number is
        throw new Exception("Could not understand the return error.");
      }
      return ipcResponse.Get<string>(0);
    }
示例#4
0
    /// <summary>
    /// Get the foreground window at the time of the call. 
    /// </summary>
    /// <returns>IntPtr the current fogregorund window.</returns>
    public IntPtr GetForegroundWindow()
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("GetForegroundWindow");

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to find the action at the given index.");
      }
      return (IntPtr)ipcResponse.Get<int>(0);
    }
示例#5
0
    /// <summary>
    /// Remove an action given a path
    /// </summary>
    /// <param name="action">The action we want to remove.</param>
    /// <param name="path">The path of the action we want to remove.</param>
    /// <returns>Success or not</returns>
    public bool RemoveAction(string action, string path)
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("RemoveAction");
      ipcRequest.Add(action);
      ipcRequest.Add(path);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to remove the given action.");
      }
      return ipcResponse.Get<bool>(0);
    }
示例#6
0
    /// <summary>
    /// Find an action at a given index.
    /// So if we are looking for a command "stuff", there could be more than one.
    /// And index 0, 1, ..., x are the posible numbers.
    /// </summary>
    /// <param name="index">The action index we are looking for.</param>
    /// <param name="action">The action we want.</param>
    /// <returns>Success or not</returns>
    public string FindAction(uint index, string action)
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("FindAction");
      ipcRequest.Add(index);
      ipcRequest.Add(action);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to find the action at the given index.");
      }

      if (ipcResponse.IsInt(0))
      {
        if (0 == ipcResponse.Get<int>(0))
        {
          throw new ArgumentOutOfRangeException( nameof(index), "Unable to find the action at the given index.");
        }

        //  not sure what that number is
        throw new Exception("Could not understand the return error.");
      }
      return ipcResponse.Get<string>(0);
    }
示例#7
0
    /// <summary>
    /// Log a message to the main application log.
    /// </summary>
    /// <param name="type"></param>
    /// <param name="message"></param>
    /// <returns>Success or not</returns>
    public bool Log( int type, string message )
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("Log");
      ipcRequest.Add(type);
      ipcRequest.Add(message);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to log the message.");
      }
      return ipcResponse.Get<bool>(0);
    }
示例#8
0
    /// <summary>
    /// Get the url by index.
    /// </summary>
    /// <param name="index">The url we are looking for.</param>
    /// <param name="quote">If we want to quote the response or not.</param>
    /// <returns></returns>
    public string Geturl( uint index, bool quote)
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("GetUrl");
      ipcRequest.Add(index);
      ipcRequest.Add(quote);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to get the url at index.");
      }

      if (ipcResponse.IsInt(0))
      {
        if (0 == ipcResponse.Get<int>(0))
        {
          throw new ArgumentOutOfRangeException(nameof(index), "Unable to get the selected file, probably because there isn't one.");
        }

        //  not sure what that number is
        throw new Exception("Could not understand the return error.");
      }
      return ipcResponse.Get<string>(0);
    }
示例#9
0
    /// <summary>
    /// Get the currently selected string, (if any).
    /// </summary>
    /// <param name="quote"></param>
    /// <returns></returns>
    public string Getstring( bool quote )
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("GetString");
      ipcRequest.Add(quote);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to get the selected string.");
      }

      if (ipcResponse.IsInt(0))
      {
        if (0 == ipcResponse.Get<int>(0))
        {
          throw new Exception("Unable to get the selected string.");
        }

        //  not sure what that number is
        throw new Exception("Could not understand the return error.");
      }
      return ipcResponse.Get<string>(0);
    }
示例#10
0
    /// <summary>
    /// Execute a process.
    /// </summary>
    /// <param name="module">The process we want to execute.</param>
    /// <param name="args">the arguments to pass</param>
    /// <param name="priviledged">if we want it to be elevated or not.</param>
    /// <returns></returns>
    public bool Execute( string module, string args, bool priviledged )
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("Execute");
      ipcRequest.Add(module);
      ipcRequest.Add(args);
      ipcRequest.Add(priviledged);

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to execute this request.");
      }
      return ipcResponse.Get<bool>(0);
    }
示例#11
0
    /// <summary>
    /// Get the number of arguments entered after the command.
    /// </summary>
    /// <returns>The number of commands entered.</returns>
    public int GetCommandCount()
    {
      //  request
      var ipcRequest = new MyOdd.IpcData();
      ipcRequest.Add(Uuid);
      ipcRequest.Add("GetCommandCount");

      //  response
      var ipcResponse = Connector.Send(ipcRequest);
      if (null == ipcResponse)
      {
        throw new Exception("Unable to get the number of commands");
      }
      return ipcResponse.Get<int>(0);
    }