]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/soundlist.c
Merge branch 'master' into terencehill/music_player
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / soundlist.c
1 #ifdef INTERFACE
2 CLASS(XonoticSoundList) EXTENDS(XonoticListBox)
3         METHOD(XonoticSoundList, configureXonoticSoundList, void(entity))
4         ATTRIB(XonoticSoundList, rowsPerItem, float, 1)
5         METHOD(XonoticSoundList, resizeNotify, void(entity, vector, vector, vector, vector))
6         METHOD(XonoticSoundList, drawListBoxItem, void(entity, float, vector, float))
7         METHOD(XonoticSoundList, getSounds, void(entity))
8         METHOD(XonoticSoundList, soundName, string(entity, float))
9         METHOD(XonoticSoundList, clickListBoxItem, void(entity, float, vector))
10         METHOD(XonoticSoundList, keyDown, float(entity, float, float, float))
11         METHOD(XonoticSoundList, destroy, void(entity))
12         METHOD(XonoticSoundList, showNotify, void(entity))
13
14         ATTRIB(XonoticSoundList, listSound, float, -1)
15         ATTRIB(XonoticSoundList, realFontSize, vector, '0 0 0')
16         ATTRIB(XonoticSoundList, columnNameOrigin, float, 0)
17         ATTRIB(XonoticSoundList, columnNameSize, float, 0)
18         ATTRIB(XonoticSoundList, columnNumberOrigin, float, 0)
19         ATTRIB(XonoticSoundList, columnNumberSize, float, 0)
20         ATTRIB(XonoticSoundList, realUpperMargin, float, 0)
21         ATTRIB(XonoticSoundList, origin, vector, '0 0 0')
22         ATTRIB(XonoticSoundList, itemAbsSize, vector, '0 0 0')
23
24         ATTRIB(XonoticSoundList, lastClickedSound, float, -1)
25         ATTRIB(XonoticSoundList, lastClickedTime, float, 0)
26         ATTRIB(XonoticSoundList, filterString, string, string_null)
27         ATTRIB(XonoticSoundList, playlist, entity, world)
28 ENDCLASS(XonoticSoundList)
29
30 entity makeXonoticSoundList();
31 void SoundList_Filter_Change(entity box, entity me);
32 void SoundList_Add(entity box, entity me);
33 void SoundList_Add_All(entity box, entity me);
34 void SoundList_Menu_Track_Change(entity box, entity me);
35 void SoundList_Menu_Track_Reset(entity box, entity me);
36 #endif
37
38 #ifdef IMPLEMENTATION
39
40 entity makeXonoticSoundList()
41 {
42         entity me;
43         me = spawnXonoticSoundList();
44         me.configureXonoticSoundList(me);
45         return me;
46 }
47
48 void XonoticSoundList_configureXonoticSoundList(entity me)
49 {
50         me.configureXonoticListBox(me);
51         me.getSounds(me);
52 }
53
54 string XonoticSoundList_soundName(entity me, float i )
55 {
56         string s;
57         s = search_getfilename(me.listSound, i);
58         s = substring(s, 15, strlen(s) - 15 - 4);  // sound/cdtracks/, .ogg
59         return s;
60 }
61
62
63 void XonoticSoundList_getSounds(entity me)
64 {
65         string s;
66
67         if(me.filterString)
68                 //subdirectory in filterString allowed
69                 s = strcat("sound/cdtracks/*", me.filterString, "*.ogg");
70         else
71                 s = "sound/cdtracks/*.ogg";
72
73         if(me.listSound >= 0)
74                 search_end(me.listSound);
75
76         me.listSound = search_begin(s, FALSE, TRUE);
77
78         if(me.listSound < 0)
79                 me.nItems=0;
80         else
81                 me.nItems=search_getsize(me.listSound);
82 }
83
84 void XonoticSoundList_destroy(entity me)
85 {
86         search_end(me.listSound);
87 }
88
89 void XonoticSoundList_resizeNotify(entity me, vector relOrigin, vector relSize, vector absOrigin, vector absSize)
90 {
91         me.itemAbsSize = '0 0 0';
92         SUPER(XonoticSoundList).resizeNotify(me, relOrigin, relSize, absOrigin, absSize);
93
94         me.realFontSize_y = me.fontSize / (me.itemAbsSize_y = (absSize_y * me.itemHeight));
95         me.realFontSize_x = me.fontSize / (me.itemAbsSize_x = (absSize_x * (1 - me.controlWidth)));
96         me.realUpperMargin = 0.5 * (1 - me.realFontSize_y);
97
98         me.columnNumberOrigin = 0;
99         me.columnNumberSize = me.realFontSize_x * 3;
100
101         me.columnNameOrigin = me.columnNumberSize;
102         me.columnNameSize = 1 - me.columnNameOrigin - me.realFontSize_x;
103 }
104
105 void XonoticSoundList_drawListBoxItem(entity me, float i, vector absSize, float isSelected)
106 {
107         string s;
108         if(isSelected)
109                 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_LISTBOX_SELECTED, SKINALPHA_LISTBOX_SELECTED);
110
111         s = me.soundName(me,i);
112         if(s == cvar_string("menu_cdtrack")) // current menu track
113                 draw_CenterText((me.columnNumberOrigin + 0.5 * me.columnNumberSize) * eX + me.realUpperMargin * eY, "[C]", me.realFontSize, '1 1 1', SKINALPHA_TEXT, 0);
114         else if(s == cvar_defstring("menu_cdtrack")) // default menu track
115                 draw_CenterText((me.columnNumberOrigin + 0.5 * me.columnNumberSize) * eX + me.realUpperMargin * eY, "[D]", me.realFontSize, '1 1 1', SKINALPHA_TEXT, 0);
116
117         s = draw_TextShortenToWidth(s, me.columnNameSize, 0, me.realFontSize);
118         draw_Text(me.realUpperMargin * eY + me.columnNameOrigin * eX, s, me.realFontSize, '1 1 1', SKINALPHA_TEXT, 0);
119 }
120
121 void XonoticSoundList_showNotify(entity me)
122 {
123         me.getSounds(me);
124 }
125
126 void SoundList_Menu_Track_Change(entity box, entity me)
127 {
128         cvar_set("menu_cdtrack", me.soundName(me,me.selectedItem));
129 }
130
131 void SoundList_Menu_Track_Reset(entity box, entity me)
132 {
133         cvar_set("menu_cdtrack", cvar_defstring("menu_cdtrack"));
134 }
135
136 void SoundList_Filter_Change(entity box, entity me)
137 {
138         if(me.filterString)
139                 strunzone(me.filterString);
140
141         if(box.text != "")
142                 me.filterString = strzone(box.text);
143         else
144                 me.filterString = string_null;
145
146         me.getSounds(me);
147 }
148
149 void SoundList_Add(entity box, entity me)
150 {
151         me.playlist.addToPlayList(me.playlist, me.soundName(me, me.selectedItem));
152 }
153
154 void SoundList_Add_All(entity box, entity me)
155 {
156         float i;
157         for(i = 0; i < me.nItems; ++i)
158                 me.playlist.addToPlayList(me.playlist, me.soundName(me, i));
159 }
160
161 void XonoticSoundList_clickListBoxItem(entity me, float i, vector where)
162 {
163         if(i == me.lastClickedSound)
164                 if(time < me.lastClickedTime + 0.3)
165                 {
166                         // DOUBLE CLICK!
167                         me.setSelected(me, i);
168                         me.playlist.addToPlayList(me.playlist, me.soundName(me, i));
169                 }
170         me.lastClickedSound = i;
171         me.lastClickedTime = time;
172 }
173
174 float XonoticSoundList_keyDown(entity me, float scan, float ascii, float shift)
175 {
176         if(scan == K_ENTER || scan == K_KP_ENTER || scan == K_SPACE) {
177                 me.playlist.addToPlayList(me.playlist, me.soundName(me, me.selectedItem));
178                 return 1;
179         }
180         else
181                 return SUPER(XonoticSoundList).keyDown(me, scan, ascii, shift);
182 }
183 #endif
184