It is currently March 28th, 2024, 5:49 pm

Dancing Robot/Skeleton Thing

Skins with graphics and animations
Post Reply
User avatar
FuzzyLizard530
Posts: 75
Joined: August 5th, 2014, 2:09 am

Dancing Robot/Skeleton Thing

Post by FuzzyLizard530 »

When I initially started this, I wanted to make it look like it was dancing, per se, to whatever music I had playing, but it doesn't seem to play along. When I had it using the system audio, It only returned a "0" for the string. So I said "F@#% it!" and made it generate random numbers. If someone wants to take a crack at making it work with music/sysaudio, be my guest!

Fonts:
http://www.dafont.com/mr-robot-funk.font?back=3547:

Code: Select all

[Rainmeter]
Update=200
AccurateText=1
BackgroundMode=2
SolidColor=128,128,128,128

[Metadata]
Name=Dancing Robo/Skello
Author=Fuzzy[Lizard]530
License=Freeware [Do what you want with this! Just be sure to share! FuzzyLizard530@GMail.com ]
Version=0.0.1.a.b.c.u.n.me

[Variables]


[RanR]
Measure=Calc
HighBound=255
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1

[RanG]
Measure=Calc
HighBound=255
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1

[RanB]
Measure=Calc
HighBound=255
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1

[DanceRand1]
Measure=Calc
HighBound=61
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1
Substitute="10":"A","11":"B","12":"C","13":"D","14":"E","15":"F","16":"G","17":"H","18":"I","19":"J","20":"K","21":"L","22":"M","23":"N","24":"O","25":"P","26":"Q","27":"R","28":"S","29":"T","30":"U","31":"V","32":"W","33":"X","34":"Y","35":"Z","36":"a","37":"b","38":"c","39":"d","40":"e","41":"f","42":"g","43":"h","44":"i","45":"j","46":"k","47":"l","48":"m","49":"n","50":"o","51":"p","52":"q","53":"r","54":"s","55":"t","56":"u","57":"v","58":"w","59":"x","60":"y","61":"z"

[Psychedelia]
Meter=Image
SolidColor=(255-[RanR]),(255-[RanG]),(255-[RanB]),255
W=120
H=120
; X=15
DynamicVariables=1

[DancingBuds]
Meter=String
MeasureName=DanceRand1
DynamicVariables=1
StringAlign=CenterCenter
; FontColor=255,255,255,255
FontColor=[RanR],[RanG],[RanB],255
FontFace=Mr Robo Funk
; FontFace=Mr Skello Funk
FontSize=60
Text=%1  
X=60
Y=60
AntiAlias=1
StringEffect=Border
FontEffectColor=0,0,0,255
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: Dancing Robot/Skeleton Thing

Post by balala »

This is just a little improvement, as the robot is dancing when the AudioLevel plugin returns a value. The robot don't follow the AudioLevel values, it still dance after the random values, but it stops dancing when the music is stoped/paused.

Code: Select all

[Rainmeter]
Update=200
AccurateText=1
BackgroundMode=2
SolidColor=128,128,128,128

[Variables]

[MeasureRMSRaw]
Measure=Plugin
Plugin=AudioLevel
Port=Output
Type=RMS

[MeasureAudio]
Measure=Calc
Formula=( 100 * MeasureRMSRaw )
IfCondition=(MeasureAudio>1)
IfTrueAction=[!UnpauseMeasureGroup "Dancing"][!Redraw]
IfFalseAction=[!PauseMeasureGroup "Dancing"][!Redraw]
IfConditionMode=1
DynamicVariables=1

[RanR]
Measure=Calc
HighBound=255
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1
Group=Dancing

[RanG]
Measure=Calc
HighBound=255
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1
Group=Dancing

[RanB]
Measure=Calc
HighBound=255
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1
Group=Dancing

[DanceRand1]
Measure=Calc
HighBound=61
LowBound=0
Formula=Trunc(Random)
UpdateRandom=1
Substitute="10":"A","11":"B","12":"C","13":"D","14":"E","15":"F","16":"G","17":"H","18":"I","19":"J","20":"K","21":"L","22":"M","23":"N","24":"O","25":"P","26":"Q","27":"R","28":"S","29":"T","30":"U","31":"V","32":"W","33":"X","34":"Y","35":"Z","36":"a","37":"b","38":"c","39":"d","40":"e","41":"f","42":"g","43":"h","44":"i","45":"j","46":"k","47":"l","48":"m","49":"n","50":"o","51":"p","52":"q","53":"r","54":"s","55":"t","56":"u","57":"v","58":"w","59":"x","60":"y","61":"z"
Group=Dancing

[Psychedelia]
Meter=Image
SolidColor=(255-[RanR]),(255-[RanG]),(255-[RanB]),255
W=120
H=120
; X=15
DynamicVariables=1

[DancingBuds]
Meter=String
MeasureName=DanceRand1
DynamicVariables=1
StringAlign=CenterCenter
; FontColor=255,255,255,255
FontColor=[RanR],[RanG],[RanB],255
FontFace=Mr Robo Funk
; FontFace=Mr Skello Funk
FontSize=60
Text=%1  
X=60
Y=60
AntiAlias=1
StringEffect=Border
FontEffectColor=0,0,0,255
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: Dancing Robot/Skeleton Thing

Post by jsmorley »

sesheron
Posts: 11
Joined: May 8th, 2014, 3:04 pm

Re: Dancing Robot/Skeleton Thing

Post by sesheron »

So yea, forgot to put font in.
Boy was I confused. Just random letters and stuff.
Installed font. Still seeing random letters.
User avatar
FuzzyLizard530
Posts: 75
Joined: August 5th, 2014, 2:09 am

Re: Dancing Robot/Skeleton Thing

Post by FuzzyLizard530 »

sesheron wrote:So yea, forgot to put font in.
Boy was I confused. Just random letters and stuff.
Installed font. Still seeing random letters.
Even after a refresh? That's odd...
User avatar
shAdowz
Posts: 63
Joined: May 15th, 2015, 9:30 am

Re: Dancing Robot/Skeleton Thing

Post by shAdowz »

This looks cool. :D
Attachments
Dancing.PNG
Post Reply