• Home
  • Documentation
  • Forum
  • Blog
  • Users
    • Map
    • Userlist
    • Businesses
    • Userpages
    • Connections
  • Contributions
    • All
    • Store
  • Downloads
    • vvvv beta
    • vvvv beta previews
  • Store
Show / Hide Table of Contents

Scripter (CSharp)

Author: woei
Date: 06 Jan, 2016
Category: plugin
Credits:

TextEditor https://github.com/icsharpcode/AvalonEdit | dark theme https://github.com/elentok/sharpdevelop-darkcolorscheme | Elias

Download

64bit

4-Scripter_v1.5.zip
05 Apr, 2018 - 21:16
Scripter v.1.5 AnyCPU
3-Scripter_v1.3.zip
14 Feb, 2016 - 14:26
Scripter v.1.3 AnyCPU
2-Scripter_v1.2.zip
11 Jan, 2016 - 16:42
Scripter v.1.2 AnyCPU
1-Scripter_v1.1.zip
09 Jan, 2016 - 13:03
Scripter v.1.1 AnyCPU
0-Scripter_v1.zip
06 Jan, 2016 - 18:56
Scripter v.1 AnyCPU

Description

call it dynamic plugins for the ultra-lazy call it Expr (Value) on steroids

  1. what?

hack some c# code into scripters nicely dark textview window and voila

if you have no idea about c# and plugins, see it as an even easier way to get into it. it's just about the plain code here, nearly no structural things you can get wrong here

if you are familiar with vvvv plugins you can really hack around here, per instance... read on

  1. so what's the difference to dynamic plugins?
  • Scripter handles pin creation for you, along the in and output parameters of your method
  • provide a method per slice, the looping and wrapping over the spread is handled internally
  • scripter compiles per instance which comes very handy if you just use it for snippets, and don't want to clutter your app with micro c# projects with obscure naming only you understand
  1. Changelog

v.1.5

  • Config pin for adding references: point to a .dll, semicolon separated
  • compiler upgrade to handle c#6 if available, aligned with the vvvv CS CodeEditor (meaning when used with > vvvv35.8)
  • plugins internal Evaluate only shows up with <vvvv35.8, else it uses vvvv native's pin

v.1.4

  • quickfixing plugin's Evaluate pin conflicting with vvvv native one introduced in 36 alpha version

v.1.3:

reworked the codebase (towards codeceompletion) so:

  • code shows up with the real linenumbers ->
  • basic error markers on compilation errors

finally defeated vvvvs native keyboard and window handling:

  • ctrl +/-/0 for zoom in/out/reset
  • ctrl + s to trigger immediate recompilation (additional to the window loosing focus)
  • ctrl + # for (un)commenting (how could i have forgotten this?)

IO stuff:

  • default values on input parameters are mapped to default values of pins
  • ref keyword creates outputs as well (comes handy for bin sized pins)
  • ILogger, IHDEHost, IPluginHost & INode2 as input parameters gets the imports instead of creating pins
  • proper sorting of (reused) pins on code change

v.1.2:

  • fixed init bug (occurred when creating from nodebrowser and not duplicating existing one)

v.1.1:

  • ALT + 0 for zoom reset
  • fixed windowed mode
  • fixed TAB not working

v.1:

  • syntax highlighting
  • basic editorshortcuts
  • zoom via Alt++ and ALT+- (since Ctrl++ is reserved)
  • reserved input "int index" to get the counter at which slice of the spread the method is actually at

Comments

Comments are no longer accepted.
Please create a new topic in the vvvv beta forum to discuss this contribution.
u7angel
08 Jan, 2016 - 22:06

0 downloads ? not true i guess...

good stuff woei ! is code completion doable ?

woei
09 Jan, 2016 - 13:08

@u7angel: was wondering about the downloads already

code completion, folding and all the other ide convenience stuff is quite a shoe. would probably be easier to (mis)use the internal editor (which still looks like a lot of work)

sebescudie
09 Jan, 2016 - 13:39

that's sweeeeet ! thanks woei

mediadog
11 Jan, 2016 - 03:24

The example patch works, but when I try to add a new Scripter node I only get a white window that opens, and I cannot type in it or do anything. This is with 34.2x86 on Win7 x64. How is one to start a new node?

microdee
11 Jan, 2016 - 11:25

i think the downloads counter is broken

woei
11 Jan, 2016 - 16:45

@mediadog: my fault, never tried to create a fresh node from nodebrowser. duplication worked with the old version. bug fixed now

mediadog
11 Jan, 2016 - 17:00

Ahhh, MUCH better, thank you!

  • Improve this Doc

© 2020 by vvvv group. Imprint | Privacy Policy.
Thanks to DocFX for building this website. Analytics by Plausible.

Back to top