Module:ProtoFlux: Difference between revisions

From Resonite Wiki
mNo edit summary
mNo edit summary
Line 34: Line 34:
  local globalsDecode = mw.text.jsonDecode( frame.args.Globals );
  local globalsDecode = mw.text.jsonDecode( frame.args.Globals );


  local protofluxContainer = mw.html.create( 'table' )
  local protofluxContainer = mw.html.create( 'figure' )
   
   
  protofluxContainer
  protofluxContainer
  :attr( 'cellspacing', '0px')
   :cssText('color: white; background-color: #11151d; width: 256px; display: flex; align-items: center;' )
   :cssText('color: white; background-color: #11151d;' )
   :tag( 'div' )
  :attr( 'width', "256px" )
   :cssText('height: 50px; background-color: #1a2a36; font-size: 18pt; flex-grow: 1;')
   :tag( 'tr' )
   :cssText('height: 50px; background-color: #1a2a36; font-size: 18pt;')
   :tag( 'th' )
   :tag( 'th' )
     :attr('width', '15%')
     :attr('width', '15%')

Revision as of 20:17, 13 January 2024

This is the Lua module for generating ProtoFlux UI elements on pages such as To String (ProtoFlux)

Please note, due to caching, updates made to this module will not immediately take effect on pages using it. If you need to see changes right away, use the editor view of a given page, which will update immediately.

Parameters

Name

Name of this ProtoFlux node. This should be the same as the name you see at the top of a given node in Resonite.

Category

Category for this ProtoFlux node. This is not the full category path, but only the direct parent - it should be the same as what appears at the bottom of a given node in Resonite.

Inline

Controls whether this node is displayed inline, or floats to the right. If this parameter is set, the node will draw inline, regardless of the value passed to it.

If you need content to flow below the element, use <div style="clear:right;"></div>, add the class .floatnone to an element, or use other elements with a similar CSS style tag.

Inputs

A string containing a JSON-encoded array of Name/Type information for each input on this node. Example input might be similar to the following, which adds two inputs of type String, one named Input1 and one named Input2

[{"Name":"Input1", "Type":"String"}, {"Name":"Input2", "Type":"String"}]

Outputs

A string containing a JSON-encoded array of Name/Type information for each output on this node. Example input might be similar to the following, which adds two outputs of type bool, one named Output1 and one named Output2

[{"Name":"Output1", "Type":"bool"}, {"Name":"Output2", "Type":"bool"}]

Globals

A string containing a JSON-encoded array of Name/Type information for each global on this node. Example input might be similar to the following, which adds two inputs of type User, one named Global1 and one named Global2

[{"Name":"Global1", "Type":"User"}, {"Name":"Global2", "Type":"User"}]

Custom

Either true or false (not case sensitive, defaults to false), if true the page is not added to ProtoFlux:All. This is mainly used for custom nodes.

Custom=false

Example Usage

If we combine all of the above examples together, we end up with this template invocation:

{{#Invoke:ProtoFlux|GenerateUI
|Name=Example Name
|Category=Example Category
|Inputs=
[
{"Name": "Input1", "Type": "Call"},
{"Name": "Input2", "Type": "String"}
]
|Outputs=
[
{"Name": "Output1", "Type": "bool"},
{"Name": "Output2", "Type": "bool"}
]
|Globals=
[
{"Name": "Global1", "Type": "User"},
{"Name": "Global2", "Type": "User"}
]
|}}

which results in the following:

<figure style="color: white; background-color: #11151d; width: 256px; display: flex; align-items: center;">

Example Name

Input1Output1Input2Output2Global1

null

Global2

null

Example Category</figure>


local p = {}

-- Type colors - RGB values to be included in the HTML output when a color is needed

local typeColor = 
{
 User = '255, 128, 255',
 Impulse = '179, 255, 255',
 Bool = '115, 115, 115',
 Boolean = '115, 115, 115',
 AsyncImpulse = '204, 179, 255',
 String = '245, 31, 31',
 Dummy = '255, 0, 255',
 IFormatProvider = '168, 143, 214',
 float = '0, 255, 255',
 ColorProfile = '255, 196, 54',
 colorX = '255, 89, 0',
 Component = '112, 76, 85',
 float3 = '0, 255, 255',
 float2 = '0, 255, 255'
}

-- Set the __index function of the metatable to return '0, 0, 0' - this effectively acts as the default value
-- if a type doesn't exist in the typeColor table.

local mt = {__index = function () return "0,0,0" end}
setmetatable(typeColor, mt)



function p.GenerateUI( frame )
 local inputsDecode = mw.text.jsonDecode( frame.args.Inputs );
 local outputsDecode = mw.text.jsonDecode( frame.args.Outputs );
 local globalsDecode = mw.text.jsonDecode( frame.args.Globals );

 local protofluxContainer = mw.html.create( 'figure' )
 
 protofluxContainer
  :cssText('color: white; background-color: #11151d; width: 256px; display: flex; align-items: center;' )
  :tag( 'div' )
  :cssText('height: 50px; background-color: #1a2a36; font-size: 18pt; flex-grow: 1;')
   :tag( 'th' )
    :attr('width', '15%')
    :done()
   :tag( 'th' )
    :attr('width', '70%')
    :wikitext(frame.args.Name)
    :done()
   :tag( 'th')
    :attr('width', '15%');

 local maxRows = math.max(#inputsDecode, #outputsDecode)
 for i=1,maxRows do
  CreateIORow(protofluxContainer, inputsDecode[i], outputsDecode[i]);
 end
 
 for i=1,#globalsDecode do
	CreateGlobalsRow(protofluxContainer, globalsDecode[i]);
 end
 
protofluxContainer
 :tag( 'tr' )
  :tag( 'td' )
   :attr('colspan', '3')
   :attr('style', 'text-align: center; padding: 10px; font-size: 18pt; color: rgb(64,64,64); font-weight: bold;' )
   :wikitext(frame.args.Category)

 return tostring(protofluxContainer);

end

-- Each Input/Output row is really 2 rows high. 
function CreateIORow(Container, Input, Output)
 local inputRow = Container
  :tag( 'tr' )
  :cssText('height: 36px;');
 createIOBindingPost(inputRow, Input, true);
inputRow
   :tag( 'td' ) -- The Input name
    :cssText('text-align: left; border-right: 20px solid #11151d; border-bottom: 4px solid #11151d; border-top: 4px solid #11151d; background-color:' .. getIOColor(Input, 0.6) .. ';')
    :wikitext( Input and Input.Name or ' ' )

createIOBindingPost(inputRow, Output, false);

Container
  :tag( 'tr')
  :cssText('height: 36px;')
   :tag( 'td' )
    :cssText('text-align: right; border-left: 20px solid #11151d; border-bottom: 4px solid #11151d; border-top: 4px solid #11151d; background-color: ' .. getIOColor(Output, 0.6) .. ';')
    :wikitext( Output and Output.Name or ' ' )
    :done()
   
end

-- Each Globlals row is really 2 rows high. 
function CreateGlobalsRow(Container, Global)
 local inputRow = Container
  :tag( 'tr' )
  :cssText('height: 36px;')
    :tag( 'td' )
     :attr( 'rowspan', '2' )
	 :attr( 'colspan', '3')
     :cssText('border-left: 10px solid ' .. getIOColor(Global, 1.0) .. ';')
	 :tag( 'span' ) -- The Input name
      :cssText('text-align: center; font-weight: bold; display:block;')
      :wikitext( Global and Global.Name or ' ' )
	 :done()
	 :tag( 'div' )
      :attr('style', 'width:100%; display:flex; gap: 10px;')
      :tag('span')
	   :attr('style', 'border-radius: 16px; background-color: #777; font-style: italic; text-align:center; flex-grow: 3;')
       :wikitext( 'null' )
	   :done()
	  :tag( 'span')
      :attr('style', 'border-radius: 16px; background-color: #333; text-align:center; flex-grow: 1;')
      :wikitext( '∅' )
Container
  :tag( 'tr')
  :cssText('height: 36px;')
   
end

function createIOBindingPost(Container, Connector, isInput)

 if nil and Connector and Connector.Type == "Impulse" then
   Container
    :tag( 'td' )
     :attr( 'rowspan', '2' )
     :cssText('background-color: black; border-style: none;')
     :tag( 'svg' )
      :attr( 'width', '38')
      :attr( 'height', '72')
      :cssText('display:block; stroke: rgba(179, 255, 255,1); fill: rgba(179, 255, 255,0.3); stroke-linejoin: round;')
      :tag( 'polygon' )
       :attr('style', 'stroke-width: 3px')
       :attr( 'points', '2,2 2,70, 36,36')
 else
 Container
    :tag( 'td' )
     :attr( 'rowspan', '2' )
     :cssText('background-color: ' .. getIOColor(Connector, 0.3) .. '; border: 5px solid ' .. getIOColor(Connector, 1.0) .. (isInput and '; border-left: none;' or ';border-right: none;'))
 end
end

function getIOColor(Connector, alpha)
 return (Connector and 'rgba(' .. typeColor[Connector.Type] .. ',' .. alpha .. ')' or 'rgba(0,0,0,0)')
end

return p