![]() |
#1 |
Junior Member
|
Superscope...any help out there?
I'm rather new to AVS and I've been wondering, is there any sort of simple explanation posted somewhere about Superscope? I've seen it used to great effect, but I have no idea how to get started on making my own. Suggestions?
|
![]() |
![]() |
![]() |
#2 |
Member
|
Hmm...
You know the syntax don't you? = to assign a var to either x, y, i, v, ect... ; ends a statement x is the line on X, try writing " x=i-0.5; " in a superscope. y is the vertical line, try changing " x=i-0.5; " to " y=i-0.5: ". v is used to read the sound, try writing "x=i*2-1; y=v;" to get an example of this. I is what creates the line, without it you'll just get a dot. try " x=0; " for an example. to make a moving line use "x=sin(t)-i", in "frame" write "t=t+0.02", this will add 0.02 to "T" on each frame. sin/cos/others closes it into the box so it won't go out of it. I assume you know math here. ![]() x and y both go from -1 to 1, where -1 on both is the top left corner and one is bottom right. That's the basics for ya, try continuing on this yourself. ![]() Linus |
![]() |
![]() |
![]() |
#3 |
Whacked Moderator
Join Date: Jun 2001
Posts: 2,104
|
Different explanation
I found Linus' explanation to be a bit unclear so here's my way of explaining the superscope:
A superscope is basically a renderer that draws either dots, or the lines between these dots. You have to write code that, at the end, outputs a set of x,y coordinates for each point to be drawn. X ranges from -1 to 1 and is the horizontal coordinate, Y ranges from -1 to 1 and is the vertical coordinate. Some examples: (0,0) - the center of the AVS screen (-1,-1) - the top-left of the AVS screen (0,1) - the center of the bottom border of the AVS screen (0.8,0.9) - a point near the bottom right The variable n is used to set the number of points to calculate each frame. Higher n means slower presets, so don't use huge numbers if it's not needed. The variable i is different for each point and is a percentage that tells you which point you're drawing. For example: - first point: i=0 (0%) - last point: i=1 (100%) - the 50th point of a 150 point superscope: i=0.33333... (33%) The variable v is also different for each point and contains the current sound value for this point (either oscilloscope- or spectrumdata, depending on your choice). If you click the 'help' button, you'll see all the functions you can use. Experiment with them if you don't know what they do exactly. So now we'll make a basic superscope: Init: n=300;t=0;tpi=acos(-1)*2; Beat: t=t+rand(200)/50 Frame: t=t-0.05;rad=sin(t)/2+0.5 Point: x=cos(i*tpi)*(rad+v/5);y=sin(i*tpi)*(rad+v/5) This will seem very complex at first, but let's look at it step by step: Init - First we set n to 300, so that the superscope draws 300 different points. We also set the variable t to 0. Then, we set the variable tpi to twice the arc-cosine of -1. If you do the math, that means 2 times Pi (6.28....). Don't worry, it's just a trick to prevent you from having to type the number pi yourself, which is a useful number. On Beat - Every beat, the variable t will be increased by a random integer number from 0-200, divided by 50. So that means a random decimal number from 0.00 to 4.00. Per Frame - Every frame we decrease the t value slightly. We also calculate rad by taking the sine of t and scaling it a bit. If you know that a sine is a repetive wave-shape and that t is decreased slightly each frame, then you'll understand that the rad value will slowly pulse from 0 to 1 and back, except every beat. Then t gets modified drastically and the rad value jumps. Per Point - Here we do the actual points. In our equation x and y are coordinates of a point on a circle. The circle has radius rad plus the current sound-value divided by 5. To make sure we traverse a full circle, we multiply i (range 0-1) with 2 times pi, so we get a range of 0-6.28... Now you have a superscope that draws a spectrum or oscilloscope circle with a jumpy radius. Another aspect of the superscope is colour. You can either use the (boring) color selector at the bottom, or you can write your own equations for the variables red, green and blue. They range from 0-1 and contain the value for their color. Let's spice up our superscope by adding this to the "on beat" equation: cr=rand(100)/100;cg=rand(100)/100;cb=rand(100)/100; And this to "per frame": red=cr;green=cg;blue=cb; What's going on here? Every beat we set cr, cg and cb to a random value in the range 0-1. Every frame, we assign these three to red, green and blue. Couldn't we just assign them directly 'on beat'? Nope... AVS resets them every frame with the color defined by the color-selector at the bottom. So there you have your own groovy, color-changing superscope. It looks neat if you remove the t-changing on beat and combine it with a Trans / Water filter. |
![]() |
![]() |
![]() |
#4 |
Senior Member
Join Date: Jul 2001
Location: Montreal, Canada
Posts: 157
|
WHOA!
That was absolutely magnificent. Thanks!
|
![]() |
![]() |
![]() |
#5 |
Banned
|
trans...
...didnt any of the stuff i sent u help any?
|
![]() |
![]() |
![]() |
#6 |
Senior Member
Join Date: Jul 2001
Location: Montreal, Canada
Posts: 157
|
Oh yeah, definitely :)
But you hafta admit,
Unconed was just alittle more detailed.. ![]() |
![]() |
![]() |
![]() |
#7 |
Junior Member
|
Thanks
Thanks for the help guys. Though i guesss this means more work for me.
![]() |
![]() |
![]() |
![]() |
#8 |
Junior Member
|
I posting this reply so people can read Unconed's explaination of scopes....
NoSage|Jason |
![]() |
![]() |
![]() |
#9 |
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
Just wondering, is it possible to specify the exact coordinates for each dot (so you could create images and shapes out of dots)?
|
![]() |
![]() |
![]() |
#10 |
Forum King
Join Date: Aug 2002
Location: The Netherlands
Posts: 4,116
|
yes, it is possible but a whole lot of work, especially(sp) when using 3D scopes.. here's an example that siddharta_one gave me once, but try to get Deamon's newest pack (hypernation) too, it has a 3D rendered cross..
Jesus loves you [yes, you] so much, he even died for you so that you will not need to die, but live forever |
![]() |
![]() |
![]() |
#11 |
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
OK, had a look at both the box example and Deamon's cross. It's for the Christian vis thing, so both of them help.
EDIT: I'm still unsure of how to determine the coordinates for each pixel, if ayone can help by creating a vis with just 2 pixels in different postitions, it would be much appreciated. Last edited by Braininator; 12th January 2004 at 10:59. |
![]() |
![]() |
![]() |
#12 |
Forum King
Join Date: May 2003
Location: Fnord?!
Posts: 2,657
|
It's easy to do. All you have to is use a custom point count then use equal( to set the locations.
In Init code: In Perframe code: In PerPoint code: You can copy and paste this into a superscope and fiddle with it if you want to. If you are sill confused just tell us what you are having a problem with or you could search the fourms for Superscopes or Per-Point, those might bring up some helpful things. //edit-Fixed a few little mess-ups and "fixed" format |
![]() |
![]() |
![]() |
#13 |
Major Dude
Join Date: Nov 2002
Location: Arnhem, the Netherlands
Posts: 927
|
Somewhat simpler (but the theory is the same):
code: In this case (and in all cases) you use a counter variable for each point. This counter is called p in this example. Since we know n is the number of points to render, we set n to 2 in this case, otherwise the rest of the points have the coords (0,0). The equal statement is 1 or 0. It's 1 when p=1 for the first point, and p=2 for the second point. The rest of the points have coords (0,0), but since we don't have any other points, we don't have to bother about that. The reason why it works: It works Per Point. It's really important to realise this. The code is run for every single dot. P is increased every dot, so we can number them. Point 1 equals p=1 etc. After that, you only have to enter coordinates for each point, and use the counter. Mind that N has to equal the last number of P or the last dots won't be drawn. The statement: If you multiply (*) any number 0, the result will be 0. If you multply by 1, the result will remain the same. Knowing this, we can do things like x=0.3*equal(p,1). In normal language: X equal 0.3 if p=1, otherwise it'll be 0. |
![]() |
![]() |
![]() |
#14 |
Major Dude
Join Date: Jan 2003
Location: Estonia.
Posts: 851
|
Anyways... its easy to store points to megabuf(), like tell a scope run only once. wile doing it, store points to gmegabuf() and every other frame just load the points from buffer.
Im too lazy to write an example now :P Phi = (1+sqrt(5))/2 |
![]() |
![]() |
![]() |
#15 |
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
Thanks for the help.
EDIT: S-uper_T-oast, your code has a few mistakes in it, but I got the general idea. Thanks. EDIT 2: Still having trouble. I'm trying to get a line from the center of the screen to the top-right corner, but I keep getting a line from the center straight down. My code: In Init code: In Frame code: In Perpoint code: Last edited by Braininator; 13th January 2004 at 05:51. |
![]() |
![]() |
![]() |
#16 |
Forum King
Join Date: Aug 2002
Location: The Netherlands
Posts: 4,116
|
Set n to the exact number of points, or else AVS sets all other numbers to 0
Edit: Instead of using Xloc1, Yloc2 and stuff, you can also use the numbers directly, since you'll only need them once simplest example: code: This sets a dot somewhere in the upper right of the screen. Jesus loves you [yes, you] so much, he even died for you so that you will not need to die, but live forever |
![]() |
![]() |
![]() |
#17 |
Major Dude
Join Date: Nov 2002
Location: Arnhem, the Netherlands
Posts: 927
|
You forgot to change the X coord, Braininator. Try:
code: I have used a minus in the Y coords because AVS has the Y coords from top to down from -1 to 1 for some strange reason. Somehow it's faster for your computer, though I don't know why. To Jaak: Please write an example, I don't understand it as well, and I really like to know how to use the buffers. |
![]() |
![]() |
![]() |
#18 |
Forum King
Join Date: Aug 2002
Location: The Netherlands
Posts: 4,116
|
The y starting at -1 instead of 1 is quite simple to understand: A PC 'thinks' from the upper left of the screen to the lower right. It's more that we as humans are strange, by starting at a high number and lowering our way down along the Y-axis
![]() And I don't think it has something to do with the X-coörds Jesus loves you [yes, you] so much, he even died for you so that you will not need to die, but live forever |
![]() |
![]() |
![]() |
#19 |
Major Dude
Join Date: Jan 2003
Location: Estonia.
Posts: 851
|
Deamon here ya go:
note that bla is set to 0 in end of frame, so that all loops will be run only 1 time after loading the preset ![]() Phi = (1+sqrt(5))/2 |
![]() |
![]() |
![]() |
#20 | ||
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
Quote:
Quote:
|
||
![]() |
![]() |
![]() |
#21 |
Forum King
Join Date: Aug 2002
Location: The Netherlands
Posts: 4,116
|
@Jaak
...And here is where coding becomes programming -Guess what? I love it!!! Jesus loves you [yes, you] so much, he even died for you so that you will not need to die, but live forever |
![]() |
![]() |
![]() |
#22 |
Whacked Moderator
Join Date: Jun 2001
Posts: 2,104
|
By the way if you want to interrupt your shape somewhere, use:
skip=equal(p,4)+equal(p,6); This will hide the 4th and 6th line segment (or 3rd and 5th, depending on how your counter works). |
![]() |
![]() |
![]() |
#23 |
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
First bit of success!
Basically, the variables thing means you could set up a template for creating images in the superscope. All you'd need to do is create a number of different points (20 perhaps), set their coordinates to 0, then when wanting to create a new image just change the amount of points required and change their coordinates. So simple now! |
![]() |
![]() |
![]() |
#24 |
Major Dude
Join Date: Nov 2002
Location: Arnhem, the Netherlands
Posts: 927
|
Another way of using p2p scoping (point-to-point, which is what you're doing now...) is to let AVS figure out the coords instead of giving them. Here's a nice example I just made. I'm quite proud of it
![]() code: It took me some time to figure this out, though it's quite simple now I've got it. I was playing with extra counters first, but after some puzzling, I realised I didn't need any. Let's see if you can figure out what's happening yourself, it's better that way than if I say it right now ![]() Other dudes around here, tell me what you think. Me personally likes it a lot. [edit] Read the comment for code explanation [/edit] |
![]() |
![]() |
![]() |
#25 |
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
Next job with my stuff, trying to get points to change on beat.
|
![]() |
![]() |
![]() |
#26 |
Forum King
|
by the by, next time please don't revive three year old threads....
"guilt is the cause of more disauders than history's most obscene marorders" --E. E. Cummings |
![]() |
![]() |
![]() |
#27 |
Major Dude
Join Date: Nov 2002
Location: Arnhem, the Netherlands
Posts: 927
|
lol, I didn't even notice that
![]() |
![]() |
![]() |
![]() |
#28 |
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
Neither did I, sorry about that!
|
![]() |
![]() |
![]() |
#29 | |
Forum King
|
Quote:
i think that i too have been guilty of this once so thats all i'll say right there. it is strange how old threads get resurrected.. i think its probably the result of the search feature being used then replying to a post without thinking. or do people really search through page after page of winamp forum archives by hand (mouse i suppose)? ![]() |
|
![]() |
![]() |
![]() |
#30 |
Major Dude
Join Date: Nov 2002
Location: Arnhem, the Netherlands
Posts: 927
|
of course it's the search option, no-one would read about 50 pages of forum topics if maybe their question is already answered. Certainly not new people.
|
![]() |
![]() |
![]() |
#31 |
Junior Member
Join Date: Jan 2004
Location: Australia
Posts: 12
|
So we're expected to search for a thread relevant to our problem, but if it's three years old we can't reply to it. Weird.
|
![]() |
![]() |
![]() |
#32 |
Major Dude
|
Newbie here....
I've been making some avs' with the presets and eventually found it well, boring, so I want to learn how to make Superscopes...
All I need to know is a few basic formulas to get me started. Could someone post some Superscope "codes" for: Circle, Triangle, Square, Star, Sphere, Cube, Prism??? I can understand the x,y,i,v just not quite the sin(cos(tan( to it. |
![]() |
![]() |
![]() |
#33 | |
Whacked Moderator
Join Date: Jun 2001
Posts: 2,104
|
Quote:
Oh and Timzone8: Read. The. FAQ. It's right in front of your nose. |
|
![]() |
![]() |
![]() |
#34 |
Major Dude
|
Where's the FAQ on superscopes? (this is it isn't it?)
![]() |
![]() |
![]() |
![]() |
#35 |
Major Dude
Join Date: Feb 2002
Location: home
Posts: 1,318
|
There isn't one, but there are several threads which discuss superscope maths which are linked to in the AVS FAQ at the top of the main AVS forum.
Stoke me a clipper. I'll be back for Christmas. - Arnold Rimmer Red Dwarf |
![]() |
![]() |
![]() |
#36 |
Junior Member
Join Date: Jan 2005
Location: Stuck in PA
Posts: 1
|
now, i may be mistaken, but instead of going through all that to make a line from the center to the upper-left, could you just put:
init: n=50;x=0;y=0 point: x=x+i y=y-i I havent tried it, but judging from what i know, that should work. |
![]() |
![]() |
![]() |
#37 | |
Senior Member
|
Quote:
code: at least if you reviwe dead for a year ago, please do it with thinking before it. Why the fuck didn't you just try the code before posting? Be ready for some serious flaming dude. |
|
![]() |
![]() |
![]() |
#38 | |
Major Dude
Join Date: Jun 2004
Location: Australia,
Posts: 1,356
|
umm someone wanna deploy a ACTUAL SSC HELP GUIDE?! (ffs not hard enough?)
Quote:
![]() i am not normal, no really. |
|
![]() |
![]() |
![]() |
#39 |
Senior Member
|
actually, if you do know some english and posess some logic, you may fully understand that quoted help. and besides, somehow all avs artists before today and some even today understand it. because it is simple! you just have to think!
|
![]() |
![]() |
![]() |
#40 |
Forum King
Join Date: May 2003
Location: Fnord?!
Posts: 2,657
|
hboy pwnd joo
I learned superscopes all by myself back when I was in 6th grade. I had no fourms, no online help, it was just me and the code, and I conquered it. Do it yourself. bunny ![]() |
![]() |
![]() |
![]() |
|
Thread Tools | Search this Thread |
Display Modes | |
|
|