Go Back   StepMania Forums > StepMania Discussion > Themes, NoteSkins, Game Types > Theme/Noteskin Tutorials and Misc. Things

Reply
 
Thread Tools Rating: Thread Rating: 4 votes, 5.00 average. Display Modes
Old 08-08-2009, 11:17 AM   #1
shakesoda
I code things sometimes
 
shakesoda's Avatar
 
Join Date: Jun 2007
Location: Seattle, WA
Posts: 5,916
shakesoda is an 8 bar usershakesoda is an 8 bar user
Reputation: 149

Send a message via AIM to shakesoda Send a message via MSN to shakesoda Send a message via Skype™ to shakesoda
Post rating: Votes: 3 Score: 3rate    
Rate this thread:
  • Currently 5.00/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
[4]
Default shakesoda is a level 1280 galaxy mage [ask questions here]

I figure it's long overdue to have a megathread for asking questions related to stepmania that aren't covered anywhere (or maybe they are but you are lazy).

Since I've got no life whatsoever as I'm sure you all think, feel free to ask really complicated and obscure questions that haven't been answered before (but don't hesitate to ask simple things too - e.g. "what's the 'Other' folder for?")

Important resources:
http://kki.ajworld.net/wiki/Main_Page - Theming wiki
http://stepmania.sourceforge.net/Lua.xml - Lua info (official)
http://kki.ajworld.net/lua/ - Lua info (unofficial, more up to date)

The important ones are 1, 2, and 4:
- I can't offer nearly as extensive help for SM 3.x as I can for SM 4 latest, a lot has changed and I really have better things to do than remember every single function SM has ever had.
- I expect that if you have something to ask, you are capable of some amount of free thought (and you can replace placeholders like this_is_where_you_should_put_something in any code I give you).
- Any and all code I give you here is public domain, unless stated otherwise.
- check the wiki first.
- Feel free to ask things not directly related to SM, if you want (although do try to keep things mostly on topic)

This thread will be as successful as you make it, ask away ;)
__________________
"Most problems are side effects of solutions to other problems." -- Eskil Steenberg

Last edited by shakesoda; 08-13-2009 at 06:06 AM..
shakesoda is offline   Reply With Quote
Old 08-10-2009, 05:15 PM   #2
Wanny
Member
 
Wanny's Avatar
 
Join Date: Oct 2006
Location: Santiago, Chile
Posts: 369
Wanny is a 2 bar user
Reputation: 14

Post rating: Votes: 0 Score: 0rate    
Default

Something I found while converting 3.9 themes to 3.95/OpenITG...

In some 3.9 themes/noteskins there's the following command: "glowmode,brighten", but 3.95/OpenITG crashes with the following message:

Code:
[string "in"]:2: attempt to call method `glowmode' (a nil value)
Is there any replacement for "glowmode"?

Last edited by Wanny; 08-10-2009 at 05:29 PM..
Wanny is offline   Reply With Quote
Old 08-10-2009, 11:23 PM   #3
neothe0ne
Member
 
neothe0ne's Avatar
 
Join Date: Oct 2006
Posts: 90
neothe0ne is a 2 bar user
Reputation: 13

Post rating: Votes: 0 Score: 0rate    
Default

How do I make Theora videos look as good as XviD at the same filesize. (No, I'm not getting anything remotely resembling h264 quality). It would be preferred if the method is compatible with avs scripts.
neothe0ne is offline   Reply With Quote
Old 08-11-2009, 02:33 AM   #4
shakesoda
I code things sometimes
 
shakesoda's Avatar
 
Join Date: Jun 2007
Location: Seattle, WA
Posts: 5,916
shakesoda is an 8 bar usershakesoda is an 8 bar user
Reputation: 149

Send a message via AIM to shakesoda Send a message via MSN to shakesoda Send a message via Skype™ to shakesoda
Post rating: Votes: 0 Score: 0rate    
Default

Quote:
Originally Posted by Wanny View Post
Something I found while converting 3.9 themes to 3.95/OpenITG...

In some 3.9 themes/noteskins there's the following command: "glowmode,brighten", but 3.95/OpenITG crashes with the following message:

Code:
[string "in"]:2: attempt to call method `glowmode' (a nil value)
Is there any replacement for "glowmode"?
I don't believe there is, although indexed color images seem to automatically switch to additive.

Quote:
Originally Posted by neothe0ne View Post
How do I make Theora videos look as good as XviD at the same filesize. (No, I'm not getting anything remotely resembling h264 quality). It would be preferred if the method is compatible with avs scripts.
ffmpeg2theora-thusnelda input-video.avi -v 9

try that, if it's too big then try v 8 and so on. You might also want to try -p pro as an option.
__________________
"Most problems are side effects of solutions to other problems." -- Eskil Steenberg
shakesoda is offline   Reply With Quote
Old 08-12-2009, 09:41 PM   #5
Wanny
Member
 
Wanny's Avatar
 
Join Date: Oct 2006
Location: Santiago, Chile
Posts: 369
Wanny is a 2 bar user
Reputation: 14

Post rating: Votes: 0 Score: 0rate    
Default

Quote:
Originally Posted by shakesoda View Post
I don't believe there is, although indexed color images seem to automatically switch to additive.
Hmm, seems not.

Take this example for the default noteskin for Beware's Extreme:
Code:
[GhostArrowBright]
NoneCommand=
MissCommand=
BooCommand=
GoodCommand=
GreatCommand=blend,add;glowmode,brighten;diffuse,0.0,0.95,0.95,1;zoom,0.8;glow,0,0.95,0.95,1.7;linear,0.13;zoom,1.2;diffusealpha,0;glow,0,0.95,0.95,0
PerfectCommand=blend,add;glowmode,brighten;diffuse,1.0,1.0,0.25,1;zoom,0.8;glow,1,1,0.25,1.7;linear,0.13;zoom,1.2;diffusealpha,0;glow,1,1,0.25,0
MarvelousCommand=blend,add;glowmode,brighten;diffuse,1.0,1.0,1.0,1;zoom,0.8;glow,1,1,1,1.7;linear,0.13;zoom,1.2;diffusealpha,0;glow,1,1,1,0
Note that there's already the "blend,add" command. If I remove the "glowmode,brightnen" command, the noteskin definitely doesn't look the same.
This applies to theme elements too. They don't look the same as the originals if I take that command.

Seems that "glowmode,brighten" isn't related to blending, but with... well, the glow mode. To make things worse, "glowmode" isn't documented anywhere.

Last edited by Wanny; 08-12-2009 at 09:44 PM..
Wanny is offline   Reply With Quote
Old 08-12-2009, 10:12 PM   #6
shakesoda
I code things sometimes
 
shakesoda's Avatar
 
Join Date: Jun 2007
Location: Seattle, WA
Posts: 5,916
shakesoda is an 8 bar usershakesoda is an 8 bar user
Reputation: 149

Send a message via AIM to shakesoda Send a message via MSN to shakesoda Send a message via Skype™ to shakesoda
Post rating: Votes: 0 Score: 0rate    
Default

I know glowmode was removed in 4, if it isn't working then I assume it was removed for 3.95 as well (unless you see anywhere that the function still exists)
__________________
"Most problems are side effects of solutions to other problems." -- Eskil Steenberg
shakesoda is offline   Reply With Quote
Old 08-13-2009, 03:55 AM   #7
Wanny
Member
 
Wanny's Avatar
 
Join Date: Oct 2006
Location: Santiago, Chile
Posts: 369
Wanny is a 2 bar user
Reputation: 14

Post rating: Votes: 0 Score: 0rate    
Default

Well, as I said, 3.95 crashes with glowmode ["attempt to call method `glowmode' (a nil value)"]

What I'd like to know if there's an equivalent command for it.

Last edited by Wanny; 08-13-2009 at 04:02 AM..
Wanny is offline   Reply With Quote
Old 08-13-2009, 05:09 AM   #8
shakesoda
I code things sometimes
 
shakesoda's Avatar
 
Join Date: Jun 2007
Location: Seattle, WA
Posts: 5,916
shakesoda is an 8 bar usershakesoda is an 8 bar user
Reputation: 149

Send a message via AIM to shakesoda Send a message via MSN to shakesoda Send a message via Skype™ to shakesoda
Post rating: Votes: 0 Score: 0rate    
Default

Quote:
Originally Posted by Wanny View Post
Well, as I said, 3.95 crashes with glowmode ["attempt to call method `glowmode' (a nil value)"]

What I'd like to know if there's an equivalent command for it.
Not that I'm aware of, no.
__________________
"Most problems are side effects of solutions to other problems." -- Eskil Steenberg
shakesoda is offline   Reply With Quote
Old 08-17-2009, 02:29 AM   #9
Karai
karaisu the rofltastic
 
Karai's Avatar
 
Join Date: Nov 2007
Location: Truro NS, Canada
Posts: 1,082
Karai is a 4 bar user
Reputation: 32

Send a message via MSN to Karai
Post rating: Votes: 0 Score: 0rate    
Default

shakesoda,

How do I themed StepMania?

--
Karai

Postscript: 1000th post :V
Karai is offline   Reply With Quote
Old 08-17-2009, 02:32 AM   #10
shakesoda
I code things sometimes
 
shakesoda's Avatar
 
Join Date: Jun 2007
Location: Seattle, WA
Posts: 5,916
shakesoda is an 8 bar usershakesoda is an 8 bar user
Reputation: 149

Send a message via AIM to shakesoda Send a message via MSN to shakesoda Send a message via Skype™ to shakesoda
Post rating: Votes: 1 Score: 1rate    
Default

Quote:
Originally Posted by Onilink View Post
shakesoda,

How do I themed StepMania?

--
Karai

Postscript: 1000th post :V
well first you put the pe- oh wait, wrong explanation.

be more specific
__________________
"Most problems are side effects of solutions to other problems." -- Eskil Steenberg
shakesoda is offline   Reply With Quote
Reply

Tags
questions, shark week, ssc, theming, tutorials

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Level Six Pad sehtick Input, Adapter, and Controller questions 0 06-04-2009 05:51 PM
At what level do you play? CX gamer General StepMania 35 12-06-2008 02:29 PM
[In Progress]Galaxy Mix MC_XD Songs and Courses 11 12-02-2008 09:39 AM
[In Progress]Galaxy Angel AA - Angel Ukky Queex Songs and Courses 0 06-02-2007 12:16 AM
level difficulty MrBob123 General questions 6 05-27-2007 11:17 PM


All times are GMT. The time now is 09:23 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.

Translate

Thanks to

SourceForge.net Logo

Random Pictures