Adventure Game Studio

AGS Support => Modules, Plugins & Tools => Topic started by: Snarky on Fri 30/03/2018 14:09:23

Title: ENGINE PLUGIN: Clipboard v0.4
Post by: Snarky on Fri 30/03/2018 14:09:23
By popular demand: a plugin to support copy/paste, integrating with the Windows clipboard!
This plugin allows you to copy text from other applications and paste it into an AGS game, or vice versa.

The plugin provides two methods:

Code (ags) Select
bool Clipboard.CopyText(String copyString);
String Clipboard.PasteText();


Calling Clipboard.CopyText(copyString) will put copyString on the Windows clipboard (returning true if successful), accessible to other applications. Calling Clipboard.PasteText() returns the current text content of the Windows clipboard as a String (or null if none) that you can use in-game. Pretty simple.

As with all AGS engine plugins, you have to place the .dll file in the AGS engine folder, then activate it in the IDE from the project tree before you can use the methods. It should be unnecessary to state, but for the record: the game must be designed and created to use the plugin, you can't just drop it into the folder of a finished game and expect it to do anything.

This is my first AGS plugin, and my first C++ project in many years. It works on my machine, but I'm not 100% sure it will work on every Windows machine â€" in particular on older Windows versions. If you could try the demo and let me know if you experience any problems, I'd appreciate it.

The code is available on Github (https://github.com/messengerbag/Clipboard). (In the demo game, the example of how to use it is in TextField (https://github.com/messengerbag/Clipboard/blob/master/Clipboard%20Demo/TextField.asc).HandleKeyPress(), starting on line 538.)

Download Clipboard plugin (https://github.com/messengerbag/Clipboard/releases/download/v0.4/AgsClipboard.dll)
Download Clipboard demo (https://github.com/messengerbag/Clipboard/releases/download/v0.4/Clipboard.Demo.zip)

Change log:
v0.4 (https://github.com/messengerbag/Clipboard/releases/tag/v0.4)
-Initial release (untested except for on my own machine)
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Riaise on Fri 30/03/2018 15:05:33
I've just had a quick go with the demo and it works fine for me on Windows 10. :)
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Vincent on Fri 30/03/2018 15:31:05
On Windows 7 it's working like a charm! Great work as usual Snarky!
Some extra notes aside: Should Ctrl+Z remove the previous paste text and Ctrl+Y add the latest text copied?
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Snarky on Fri 30/03/2018 15:41:18
Quote from: Riaise on Fri 30/03/2018 15:05:33
I've just had a quick go with the demo and it works fine for me on Windows 10. :)
Quote from: Vincent on Fri 30/03/2018 15:31:05
On Windows 7 it's working like a charm!

Good! I'm on Win10, so I thought that would probably work, but I'm very happy to hear it's working on Windows 7 as well. Hopefully that means that it's not terribly dependent on the Windows version. Thanks for testing!

QuoteGreat work as usual Snarky!
Some extra notes aside: Should Ctrl+Z remove the previous paste text and Ctrl+Y add the latest text copied?

Thanks. Sure, undo/history would be useful to have, but it wouldn't be part of the plugin, but rather something you implement in your game logic. I'll think about adding it to the TextField module.
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Vincent on Fri 30/03/2018 15:49:59
You are welcome Snarky!

Quote from: Snarky on Fri 30/03/2018 15:41:18
Thanks. Sure, undo/history would be useful to have, but it wouldn't be part of the plugin, but rather something you implement in your game logic. I'll think about adding it to the TextField module.

In fact, I was thinking that it could be implemented in the TextField module as well instead of in the plugin itself after I had a look into the code on Github.
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Gurok on Sat 31/03/2018 01:05:41
Sorry if it wasn't clear, but I was talking about your TextField module. Give people a little credit, Snarky.
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Snarky on Sat 31/03/2018 06:59:04
Fair enough. I've moved your post over to the TextField module thread.
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: cat on Tue 08/05/2018 20:52:13
A bite late, but I just saw this and ;-D
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Dave Gilbert on Wed 09/05/2018 11:43:28
This is SO COOL. And would have been super useful on my current project (no more copying debug info manually!). Will definitely use it in the future.
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Snarky on Fri 13/07/2018 08:25:13
Hmm. Testing it on a relatively untouched Win10 VM, this plugin turns out to have a dependency on some platform dll from Visual Studio that isn't universally deployed: probably (some version of) msvcp or msvcr. Without it, any game that includes the plugin will fail to run. I'll investigate more to identify the dependency and see if it can be bundled with the plugin.
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Baguettator on Wed 30/06/2021 08:10:00
Hi !

I found this nice plugin, but my question is : will it limits the possibilities to play my game using this plugin if the game is played on another OS than windows ?
I mean : MAC users or Linux users could play the game ? Or it will not run ?

The commands to copy/paste are not essential for the game, it's just a "luxure" for those who could use it (windows players, so).
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Snarky on Wed 30/06/2021 08:22:50
Yes, the plugin currently only works on Windows, and games compiled with it won't run on Mac/Linux. However, if you take a little bit of care, you can simply build it once for Windows, disable the plugin, and build it again for other platforms. For this to work, you should wrap all plugin calls within #ifdef CLIPBOARD_PLUGIN conditions, like so:

Code (ags) Select
  #ifdef CLIPBOARD_PLUGIN
    String s = Clipboard.PasteText();
    if(!String.IsNullOrEmpty(s))
    {
      lblContent.Text = s;
      return true;
    }
    else return false;
  #endif
  #ifndef CLIPBOARD_PLUGIN
    return false;
  #endif
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Baguettator on Wed 30/06/2021 18:18:04
Thanks Snarky for the help !

Could you please explain me how to install your plugin in AGS, so ? I use 3.5.0
Title: Re: ENGINE PLUGIN: Clipboard v0.4
Post by: Snarky on Thu 01/07/2021 20:12:38
Check out the manual, "Other features | Plugins."