aboutsummaryrefslogtreecommitdiff
path: root/smelt/glfw/sfx_dumb.cpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2016-10-28 16:35:21 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2016-10-28 16:35:21 +0800
commit0900cc583cc5e51b7c6b378de93cca29e11cb0e9 (patch)
tree47625b45ad1d4d63eaa59b2414f89fbfda33d035 /smelt/glfw/sfx_dumb.cpp
parent6206029f2d0af3ef76a0a61ef024ca758307ba19 (diff)
downloadSMELT-0900cc583cc5e51b7c6b378de93cca29e11cb0e9.tar.xz
Add the GLFW port, still using OpenGL 2.1 though.
And a more detailed readme.
Diffstat (limited to 'smelt/glfw/sfx_dumb.cpp')
-rw-r--r--smelt/glfw/sfx_dumb.cpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/smelt/glfw/sfx_dumb.cpp b/smelt/glfw/sfx_dumb.cpp
new file mode 100644
index 0000000..4464da1
--- /dev/null
+++ b/smelt/glfw/sfx_dumb.cpp
@@ -0,0 +1,63 @@
+// -*- C++ -*-
+/*
+ * Simple MultimEdia LiTerator(SMELT)
+ * by Chris Xiong 2015
+ * SFX dumb implementation
+ * This dumb implementation has everything stubbed, useful if you don't
+ * use the audio routines here.
+ *
+ * WARNING: This file is not intended to be used on its own!
+ *
+ */
+
+SMSFX SMELT_IMPL::smSFXLoad(const char *path)
+{return 0;}
+SMSFX SMELT_IMPL::smSFXLoadFromMemory(const char *ptr,DWORD size)
+{return 0;}
+SMCHN SMELT_IMPL::smSFXPlay(SMSFX fx,int vol,int pan,float pitch,bool loop)
+{return 0;}
+float SMELT_IMPL::smSFXGetLengthf(SMSFX fx)
+{return 0.0;}
+DWORD SMELT_IMPL::smSFXGetLengthd(SMSFX fx)
+{return -1;}
+void SMELT_IMPL::smSFXSetLoopPoint(SMSFX fx,DWORD l,DWORD r)
+{}
+void SMELT_IMPL::smSFXFree(SMSFX fx)
+{}
+void SMELT_IMPL::smChannelVol(SMCHN chn,int vol)
+{}
+void SMELT_IMPL::smChannelPan(SMCHN chn,int pan)
+{}
+void SMELT_IMPL::smChannelPitch(SMCHN chn,float pitch)
+{}
+void SMELT_IMPL::smChannelPause(SMCHN chn)
+{}
+void SMELT_IMPL::smChannelResume(SMCHN chn)
+{}
+void SMELT_IMPL::smChannelStop(SMCHN chn)
+{}
+void SMELT_IMPL::smChannelPauseAll()
+{}
+void SMELT_IMPL::smChannelResumeAll()
+{}
+void SMELT_IMPL::smChannelStopAll()
+{}
+bool SMELT_IMPL::smChannelIsPlaying(SMCHN chn)
+{return false;}
+float SMELT_IMPL::smChannelGetPosf(SMCHN chn)
+{return -1.;}
+void SMELT_IMPL::smChannelSetPosf(SMCHN chn,float pos)
+{}
+int SMELT_IMPL::smChannelGetPosd(SMCHN chn)
+{return -1;}
+void SMELT_IMPL::smChannelSetPosd(SMCHN chn,int pos)
+{}
+
+bool SMELT_IMPL::initOAL()
+{
+ smLog("%s:" SLINE ": I'm dumb!\n",SFX_OAL_SRCFN);
+ return true;
+}
+void SMELT_IMPL::finiOAL()
+{
+}