aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Input/in_midi/wa3.cpp
blob: 661a500142225a2718cafd43b8e76d5e3307e408 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
#include "../studio/services/svc_mediaconverter.h"
#include "../studio/wac.h"
#include "../common/rootcomp.h"
#include "../studio/services/svc_action.h"
#include "../unpack/unpack_helper.h"
#include "main.h"

#define WACNAME WACcnv_midi

class WACNAME : public WAComponentClient{
public:
  WACNAME();
  virtual ~WACNAME();

  virtual const char *getName() { return NAME; };
  virtual GUID getGUID();

  virtual void onCreate();
  virtual void onDestroy();
  
  virtual int getDisplayComponent() { return FALSE; };

  virtual CfgItem *getCfgInterface(int n) { return this; }

private:
};


static WACNAME wac;
WAComponentClient *the = &wac;


// {28FDCD38-26A2-482c-A691-55901A355D9E}
static const GUID guid = 
{ 0x28fdcd38, 0x26a2, 0x482c, { 0xa6, 0x91, 0x55, 0x90, 0x1a, 0x35, 0x5d, 0x9e } };

GUID WACNAME::getGUID() {
  return guid;
}

static void update_extensions()
{
	static int old_mask;
	int new_mask = cfg_ext_mask;
	int n;
	for(n=0;n<MIDI_core::FileTypes_GetNum();n++)
	{
		int bit = 1<<n;
		if ( (new_mask & bit) && !(old_mask & bit) ) 
			api->core_registerExtension(StringPrintf("*.%s",MIDI_core::FileTypes_GetExtension(n)),MIDI_core::FileTypes_GetDescription(n),"Audio");
		else if ( !(new_mask & bit) && (old_mask & bit) )
		{
			api->core_unregisterExtension(StringPrintf("*.%s",MIDI_core::FileTypes_GetExtension(n)));
		}
	}
	old_mask = new_mask;
}

void WACNAME::onCreate()
{
	// {EDAA0599-3E43-4eb5-A65D-C0A0484240E7}
	static const GUID cfg_audio_guid = 
	{ 0xedaa0599, 0x3e43, 0x4eb5, { 0xa6, 0x5d, 0xc0, 0xa0, 0x48, 0x42, 0x40, 0xe7 } };
	
	registerSkinFile("xml/midi-prefs.xml"); 

	api->preferences_registerGroup("winamp.preferences.midi", "MIDI playback", guid, cfg_audio_guid);

	MIDI_core::GlobalInit();

	
	update_extensions();
}

void WACNAME::onDestroy() {
	MIDI_core::GlobalQuit();
}

static void check_messages()
{
	MSG msg;
	while(PeekMessage(&msg,0,0,0,PM_REMOVE))
		DispatchMessage(&msg);
}

//note: multiinstance support is NOT working, and will never be; it makes no sense anyway. also, multiinstance safety was totally fuct in directmusic drivers last time i bothered trying.

class cnv_MIDI : public svc_mediaConverterI {
private:
	static critical_section core_owner_sync;
	static cnv_MIDI * core_owner;
	
	DWORD thread_id;

	MemBlock<char> sample_buffer;
	
	MIDI_file * file;

	int is_open;
	int eof_flag;

	void core_reset()
	{
		core_owner_sync.enter();
		if (core_owner==this) {core_owner=0;MIDI_core::Close();}
		core_owner_sync.leave();
		if (file) {file->Free();file=0;}
		is_open=0;
		eof_flag=0;
	}

	int core_takeover()
	{
		core_owner_sync.enter();
		if (core_owner!=this)
		{
			if (core_owner!=0) {core_owner_sync.leave();return 0;}
			core_owner=this;
			thread_id = GetCurrentThreadId();
			MIDI_core::Init();
		}
		core_owner_sync.leave();
		return 1;
	}

	int check_file(MediaInfo * infos)
	{
		if (file && !STRICMP(file->path,infos->getFilename())) return 1;
		core_reset();
		MemBlock<char> data;
		int size;

		try {
			svc_fileReader * reader = infos->getReader();
			if (!reader) return 0;
			size = reader->getLength();
			if (size<=0) return 0;
			reader->seek(0);
			int firstread = size > 256 ? 256 : size;
			data.setSize(firstread);
			if (reader->read(data.getMemory(),firstread)!=firstread) return 0;
			if (MIDI_file::HeaderTest(data.getMemory(),size))
			{
				if (firstread != size)
				{
					if (data.setSize(size)==0) return 0;
					if (reader->read(data.getMemory()+firstread,size-firstread)!=size-firstread) return 0;
				}
			}
			else
			{
				void * unpack = unpack_helper::unpack_getHandle(reader);
				if (!unpack) return 0;
				size = api->fileGetFileSize(unpack);
				firstread = size > 256 ? 256 : size;
				data.setSize(firstread);
				if (api->fileRead(data.getMemory(),firstread,unpack)!=firstread) {api->fileClose(unpack);return 0;}
				if (!MIDI_file::HeaderTest(data.getMemory(),size)) {api->fileClose(unpack);return 0;}

				if (firstread != size)
				{
					if (data.setSize(size)==0) {api->fileClose(unpack);return 0;}
					if (api->fileRead(data.getMemory()+firstread,size-firstread,unpack)!=size-firstread) {api->fileClose(unpack);return 0;}
				}
				
				api->fileClose(unpack);				
			}
			file = MIDI_file::Create(infos->getFilename(),data.getMemory(),size);

			return !!file;
		}
		catch(...)
		{
			file = 0;
			return 0;
		}
	}

public:

	static const char *getServiceName() { return NAME; }

	cnv_MIDI()
	{
		file=0;
		is_open=0;
		eof_flag=0;
		thread_id=0;
	}

	~cnv_MIDI()
	{
		core_reset();
	}

	virtual int canConvertFrom(svc_fileReader *reader, const char *name, const char *chunktype)
	{
		return reader && !chunktype && name && MIDI_core::IsOurFile(name);
	}

	virtual const char *getConverterTo()
	{
		if (!core_takeover()) return "FINAL";
		return MIDI_core::UsesOutput() ? "PCM" : "FINAL";
	}

	virtual int getInfos(MediaInfo *infos)
	{
		if (!check_file(infos)) return 0;
		infos->setTitle(Std::filename(file->path));
		infos->setLength(file->len);

		infos->setInfo(
			StringPrintf("%sMIDI %i channels",
				file->info.e_type ? StringPrintf("%s ",file->info.e_type) : ""
				,file->info.channels)
			);

		return 1;
	}

	virtual int processData(MediaInfo *infos, ChunkList *chunk_list, bool *killswitch)
	{
		if (!check_file(infos)) return 0;
		if (!core_takeover()) return 0;

		if (!is_open)
		{
			MIDI_core::SetVolume(api->core_getVolume(m_coretoken));
			MIDI_core::SetPan(api->core_getPan(m_coretoken));

			if (!MIDI_core::OpenFile(file)) 
				return 0;
			is_open=1;
			eof_flag=0;
		}

		check_messages();

		if (!MIDI_core::HavePCM()) {Sleep(1);check_messages();return eof_flag ? 0 : 1;}
		else
		{
			int srate,nch,bps;
			int size;
			MIDI_core::GetPCM(&srate,&nch,&bps);
			size = 576 * nch * (bps/8);
			if (sample_buffer.getSize()<size) sample_buffer.setSize(size);
			size = MIDI_core::GetSamples(sample_buffer.getMemory(),size,(char*)killswitch);
			if (size<=0) 
				return 0;

			ChunkInfosI *ci=new ChunkInfosI();
			ci->addInfo("srate",srate);
			ci->addInfo("bps",bps);
			ci->addInfo("nch",nch);

			chunk_list->setChunk("PCM",sample_buffer.getMemory(),size,ci);
			

			return 1;
		}
	}

	virtual int getLatency(void) { return 0; }

	// callbacks
	virtual int corecb_onSeeked(int newpos)
	{
		if (core_owner==this) MIDI_core::SetPosition(newpos);
		return 0;
	}

	int getPosition(void)
	{
		if (core_owner==this && !MIDI_core::UsesOutput()) return MIDI_core::GetPosition();
		return -1;
	}

	virtual int corecb_onVolumeChange(int v)
	{
		if (core_owner==this) MIDI_core::SetVolume(v);
		return 0;
	}
	virtual int corecb_onPanChange(int v)
	{
		if (core_owner==this) MIDI_core::SetPan(v);
		return 0;
	}
	virtual int corecb_onAbortCurrentSong() {return 0;};
	virtual int corecb_onPaused()
	{
		if (core_owner==this) MIDI_core::Pause(1);
		return 0; 
	}
	virtual int corecb_onUnpaused() 
	{
		if (core_owner==this) MIDI_core::Pause(0);
		return 0; 
	}

	static void notify_eof()
	{
		core_owner_sync.enter();
		if (core_owner) core_owner->eof_flag=1;
		core_owner_sync.leave();		
	}

	static DWORD get_core_thread()
	{
		DWORD ret = 0;
		core_owner_sync.enter();
		if (core_owner) ret = core_owner->thread_id;
		core_owner_sync.leave();
		return ret;
	}

};

cnv_MIDI * cnv_MIDI::core_owner=0;
critical_section cnv_MIDI::core_owner_sync;

static waServiceFactoryT<svc_mediaConverter, cnv_MIDI> midi_svc;

#define ACTIONID_CONFIG "MIDI:CONFIG"

class MIDI_actions : public svc_actionI {
  public:
    MIDI_actions() {
      registerAction(ACTIONID_CONFIG, 0);
    }
    virtual ~MIDI_actions() { }

    virtual int onActionId(int id, const char *action, const char *param,int,int,void*,int,RootWnd*) {
      switch (id) {
        case 0:
			if (!_stricmp(action,ACTIONID_CONFIG))
			{
				if (MIDI_core::Config(MIDI_callback::GetMainWindow()))
				{
					update_extensions();
				}
			}
          return 1;
      }
    return 0;
    }
  static const char *getServiceName() { return "MIDI Player Actions Service"; }
};


static waServiceFactoryTSingle<svc_actionI, MIDI_actions> actions;

WACNAME::WACNAME() {
#ifdef FORTIFY
	FortifySetName("cnv_midi.wac");
	FortifyEnterScope();
#endif
	registerService(&midi_svc);
	registerService(&actions);
}

WACNAME::~WACNAME() {
#ifdef FORTIFY
  FortifyLeaveScope();
#endif
}


void MIDI_callback::NotifyEOF() {cnv_MIDI::notify_eof();}
HWND MIDI_callback::GetMainWindow() {return api->main_getRootWnd()->gethWnd();}
HINSTANCE MIDI_callback::GetInstance() {return wac.gethInstance();}
void MIDI_callback::Error(const char * tx) {}

void MIDI_callback::Idle(int ms)
{
	int core_thread = (GetCurrentThreadId() == cnv_MIDI::get_core_thread());
	int start = timeGetTime();
	do {
		if (core_thread) check_messages();
		Sleep(1);
	} while((int)timeGetTime() - start < ms);
	if (core_thread) check_messages();
}

extern "C" {
BOOL APIENTRY DllMain(HANDLE hMod,DWORD r,void*)
{
    if (r==DLL_PROCESS_ATTACH)
	{
		DisableThreadLibraryCalls((HMODULE)hMod);
	}
	return 1;
	
}
}