HydrogenAudio

Hosted Forums => foobar2000 => General - (fb2k) => Topic started by: shakey_snake on 2009-11-24 16:31:12

Title: Custom Columns with the New highlighting syntax
Post by: shakey_snake on 2009-11-24 16:31:12
So, I figured I'd share some of my personal examples of what can be done with the new highlighting codes.

Similar to default "Track No' column
Shades leading zeros, highlights now playing
Code: [Select]
$if(%discnumber%,$if(%isplaying%,>>)%discnumber%.[%track%],[$ifgreater(10,%track%,<<<0>>>$if(%isplaying%,>>)$num(%track%,1),$if(%isplaying%,>>)%track%)])


Similar to default 'Title / Track artist' column
Shades contents of parentheses, highlights now playing
Code: [Select]
$if(%isplaying%,>>)$replace($if2(%title%,%filename%),'(',<<'(',')',')'>>)[' // '%track artist%]$if(%isplaying%,'<<')['   ['%queue_index%']']



What are you guys coming up with?
Title: Custom Columns with the New highlighting syntax
Post by: lokioki on 2009-11-24 16:51:42
So cash and I just did it to highlight tracknumber : /
Title: Custom Columns with the New highlighting syntax
Post by: Andreasvb on 2009-11-24 17:10:30
I saw that the Playing column got a built-in queue view, maybe it had before too, never really used DUI.

This is mostly for personal use, some custom tags.

Artist - Title column:
Code: [Select]
$puts(title_hl,$replace(>>>%title%,'(',<<<<<<'(',')',')>>>>>>>>'))$if(%release%,$get(title_hl),%artist% - $get(title_hl)))

Rating column:
Code: [Select]
<$repeat(★>,$meta(rating)) $if($meta(fav),>>>♪)
Title: Custom Columns with the New highlighting syntax
Post by: ojdo on 2009-11-24 22:14:40
Nothing fancy, but:

Rating in highlight color dots:
Code: [Select]
>>$if(%rating%,$repeat(•,%rating%))<<


Title / Track Artist, but with shaded Track Artist:
Code: [Select]
%title%[<<' // '%track artist%>>]


And a "service" column: Hihglighted "!" if there is a non-replaygained track:
Code: [Select]
>>>$if(%__replaygain_track_gain%,,!)<<<

I just need it in my "new items" playlist, but it is so thin that it can stay activated everywhere. Could also be added to another column but I like to keep things separated.

Oh, this one I like: %play_count% shaded depending on the value. From 1 (light background) until 10 (default text color) the text becomes darker:
Code: [Select]
$ifgreater(%play_count%,9,%play_count%,$select(%play_count%,<<<1>>>,<<<2>>>,<<<3>>>,<<4>>,<<5>>,<<6>>,<7>,<8>,<9>))
Title: Custom Columns with the New highlighting syntax
Post by: lokioki on 2009-11-25 11:18:51
How can I add Ojdo`s play_count code and Shakey´s codes together ?
Meaning I'd like to stuck them in a same column if possible, I can't figure out how to make it work.
Title: Custom Columns with the New highlighting syntax
Post by: Yirkha on 2009-11-25 11:35:30
Just append one after another, what doesn't seem to work?
Title: Custom Columns with the New highlighting syntax
Post by: Xezzy on 2009-11-25 12:25:23
Oh, this one I like: %play_count% shaded depending on the value. From 1 (light background) until 10 (default text color) the text becomes darker:
Code: [Select]
$ifgreater(%play_count%,9,%play_count%,$select(%play_count%,<<<1>>>,<<<2>>>,<<<3>>>,<<4>>,<<5>>,<<6>>,<7>,<8>,<9>))


Thanks!

In my setup I use previously mentioned highlighting for "// %artist%", dimming for "(parens)" and my rating column (notes for ratings 1-4, heart for rating 5):
Code: [Select]
$if(%rating%,$ifequal(%rating%,5,>>>?<<<,$repeat(>,$sub(%rating%,2))$char($add(9832,%rating%))$repeat(<,$sub(%rating%,2))), )

Title: Custom Columns with the New highlighting syntax
Post by: marc2003 on 2009-11-25 12:26:15
<%artist%> %title%

shows contrasting colours for both artist and title when selected and not selected. no problem.

but if you use

>%artist%< %title%

both artist and title are shown as the same colour when selected. non selected items show contrasting colours as you'd expect. is this by design or not?

screenshot:

(http://k5sbdw.blu.livefilestore.com/y1ptbPTkqnBOusWM-Ua7hnOHBe_GQFcXg4WZwTQ5EL3-B4anL51uDroRHNw_YDBtP_zK-JNf1Wsnnsx9UIp0OeJLKBH2ukCnyRs/not%20working.PNG)
Title: Custom Columns with the New highlighting syntax
Post by: lokioki on 2009-11-25 14:28:54
Just append one after another, what doesn't seem to work?

I guess I did something wrong the first time.. works fine now
Title: Custom Columns with the New highlighting syntax
Post by: dubpistol on 2009-11-25 15:49:31
That's the snytax of my "Track Artist ● Title"-Column

Code: [Select]
$if(%isplaying%,>[%track artist% $char(8226) ]$replace(%title%,'(',<<<'(',')',')'>>>)<,[%track artist% $char(8226) ]$replace(%title%,'(',<<'(',')',')'>>))


It's bad, like marc2003 mentioned before, that highlight isn't visible on selected tracks.

That is how it looks (and should look):
(http://img3.imageshack.us/img3/1801/unselected.th.png) (http://img3.imageshack.us/i/unselected.png/)

And that is how it looks if the now-playling-highlighted track is selected:
(http://img16.imageshack.us/img16/1329/selected.th.png) (http://img16.imageshack.us/i/selected.png/)
Title: Custom Columns with the New highlighting syntax
Post by: shakey_snake on 2009-11-25 15:53:32
In several color themes highlight and selection color are the same or very similar. So you'd get invisible or near text if that were to happen.

This won't be changed.
Title: Custom Columns with the New highlighting syntax
Post by: ExUser on 2009-11-25 15:53:37
...and so the cycle begins anew as foobar2000 users begin to clutter their formatting scripts once again... ;
Title: Custom Columns with the New highlighting syntax
Post by: shakey_snake on 2009-11-25 15:54:28
At least they're portable now.
Title: Custom Columns with the New highlighting syntax
Post by: dubpistol on 2009-11-25 16:17:50
In several color themes highlight and selection color are the same or very similar. So you'd get invisible or near text if that were to happen.

I guess I don't understand. I tried every color theme. Highlighted text, if selected, is everytime only black or white, while dimmed text is real dimmed if selected. Maybe I explained it a little bit incomprehensible, so I added two screenshots to my last posting. 
Title: Custom Columns with the New highlighting syntax
Post by: KarnEvil9 on 2010-01-15 16:16:22
Forgive my ignorance, but where do I place this code?
Title: Custom Columns with the New highlighting syntax
Post by: shakey_snake on 2010-01-15 16:35:59
As per the topic title:
Preferences->Display-> Default User Interface->Playlist View->Custom Columns->Pattern [column]

I guess I should have mentioned it in the OP.