1 
2 /* ============================================================================================== */
3 /* FMOD Ex - Error string header file. Copyright (c), Firelight Technologies Pty, Ltd. 2004-2011. */
4 /*                                                                                                */
5 /* Use this header if you want to store or display a string version / english explanation of      */
6 /* the FMOD error codes.                                                                          */
7 /*                                                                                                */
8 /* ============================================================================================== */
9 
10 #ifndef _FMOD_ERRORS_H
11 #define _FMOD_ERRORS_H
12 
13 #include "fmod.h"
14 
15 #ifdef __GNUC__
16 static const char *FMOD_ErrorString(FMOD_RESULT errcode) __attribute__((unused));
17 #endif
18 
FMOD_ErrorString(FMOD_RESULT errcode)19 static const char *FMOD_ErrorString(FMOD_RESULT errcode)
20 {
21     switch (errcode)
22     {
23         case FMOD_ERR_ALREADYLOCKED:          return "Tried to call lock a second time before unlock was called. ";
24         case FMOD_ERR_BADCOMMAND:             return "Tried to call a function on a data type that does not allow this type of functionality (ie calling Sound::lock on a streaming sound). ";
25         case FMOD_ERR_CDDA_DRIVERS:           return "Neither NTSCSI nor ASPI could be initialised. ";
26         case FMOD_ERR_CDDA_INIT:              return "An error occurred while initialising the CDDA subsystem. ";
27         case FMOD_ERR_CDDA_INVALID_DEVICE:    return "Couldn't find the specified device. ";
28         case FMOD_ERR_CDDA_NOAUDIO:           return "No audio tracks on the specified disc. ";
29         case FMOD_ERR_CDDA_NODEVICES:         return "No CD/DVD devices were found. ";
30         case FMOD_ERR_CDDA_NODISC:            return "No disc present in the specified drive. ";
31         case FMOD_ERR_CDDA_READ:              return "A CDDA read error occurred. ";
32         case FMOD_ERR_CHANNEL_ALLOC:          return "Error trying to allocate a channel. ";
33         case FMOD_ERR_CHANNEL_STOLEN:         return "The specified channel has been reused to play another sound. ";
34         case FMOD_ERR_COM:                    return "A Win32 COM related error occured. COM failed to initialize or a QueryInterface failed meaning a Windows codec or driver was not installed properly. ";
35         case FMOD_ERR_DMA:                    return "DMA Failure.  See debug output for more information. ";
36         case FMOD_ERR_DSP_CONNECTION:         return "DSP connection error.  Connection possibly caused a cyclic dependancy.  Or tried to connect a tree too many units deep (more than 128). ";
37         case FMOD_ERR_DSP_FORMAT:             return "DSP Format error.  A DSP unit may have attempted to connect to this network with the wrong format. ";
38         case FMOD_ERR_DSP_NOTFOUND:           return "DSP connection error.  Couldn't find the DSP unit specified. ";
39         case FMOD_ERR_DSP_RUNNING:            return "DSP error.  Cannot perform this operation while the network is in the middle of running.  This will most likely happen if a connection or disconnection is attempted in a DSP callback. ";
40         case FMOD_ERR_DSP_TOOMANYCONNECTIONS: return "DSP connection error.  The unit being connected to or disconnected should only have 1 input or output. ";
41         case FMOD_ERR_EVENT_ALREADY_LOADED:   return "The specified project or bank has already been loaded. Having multiple copies of the same project loaded simultaneously is forbidden. ";
42         case FMOD_ERR_EVENT_FAILED:           return "An Event failed to be retrieved, most likely due to 'just fail' being specified as the max playbacks behavior. ";
43         case FMOD_ERR_EVENT_GUIDCONFLICT:     return "An event with the same GUID already exists. ";
44         case FMOD_ERR_EVENT_INFOONLY:         return "Can't execute this command on an EVENT_INFOONLY event. ";
45         case FMOD_ERR_EVENT_INTERNAL:         return "An error occured that wasn't supposed to.  See debug log for reason. ";
46         case FMOD_ERR_EVENT_MAXSTREAMS:       return "Event failed because 'Max streams' was hit when FMOD_EVENT_INIT_FAIL_ON_MAXSTREAMS was specified. ";
47         case FMOD_ERR_EVENT_MISMATCH:         return "FSB mismatches the FEV it was compiled with, the stream/sample mode it was meant to be created with was different, or the FEV was built for a different platform. ";
48         case FMOD_ERR_EVENT_NAMECONFLICT:     return "A category with the same name already exists. ";
49         case FMOD_ERR_EVENT_NEEDSSIMPLE:      return "Tried to call a function on a complex event that's only supported by simple events. ";
50         case FMOD_ERR_EVENT_NOTFOUND:         return "The requested event, event group, event category or event property could not be found. ";
51         case FMOD_ERR_FILE_BAD:               return "Error loading file. ";
52         case FMOD_ERR_FILE_COULDNOTSEEK:      return "Couldn't perform seek operation.  This is a limitation of the medium (ie netstreams) or the file format. ";
53         case FMOD_ERR_FILE_DISKEJECTED:       return "Media was ejected while reading. ";
54         case FMOD_ERR_FILE_EOF:               return "End of file unexpectedly reached while trying to read essential data (truncated data?). ";
55         case FMOD_ERR_FILE_NOTFOUND:          return "File not found. ";
56         case FMOD_ERR_FILE_UNWANTED:          return "Unwanted file access occured. ";
57         case FMOD_ERR_FORMAT:                 return "Unsupported file or audio format. ";
58         case FMOD_ERR_HTTP:                   return "A HTTP error occurred. This is a catch-all for HTTP errors not listed elsewhere. ";
59         case FMOD_ERR_HTTP_ACCESS:            return "The specified resource requires authentication or is forbidden. ";
60         case FMOD_ERR_HTTP_PROXY_AUTH:        return "Proxy authentication is required to access the specified resource. ";
61         case FMOD_ERR_HTTP_SERVER_ERROR:      return "A HTTP server error occurred. ";
62         case FMOD_ERR_HTTP_TIMEOUT:           return "The HTTP request timed out. ";
63         case FMOD_ERR_INITIALIZATION:         return "FMOD was not initialized correctly to support this function. ";
64         case FMOD_ERR_INITIALIZED:            return "Cannot call this command after System::init. ";
65         case FMOD_ERR_INTERNAL:               return "An error occured that wasn't supposed to.  Contact support. ";
66         case FMOD_ERR_INVALID_ADDRESS:        return "On Xbox 360, this memory address passed to FMOD must be physical, (ie allocated with XPhysicalAlloc.) ";
67         case FMOD_ERR_INVALID_FLOAT:          return "Value passed in was a NaN, Inf or denormalized float. ";
68         case FMOD_ERR_INVALID_HANDLE:         return "An invalid object handle was used. ";
69         case FMOD_ERR_INVALID_PARAM:          return "An invalid parameter was passed to this function. ";
70         case FMOD_ERR_INVALID_POSITION:       return "An invalid seek position was passed to this function. ";
71         case FMOD_ERR_INVALID_SPEAKER:        return "An invalid speaker was passed to this function based on the current speaker mode. ";
72         case FMOD_ERR_INVALID_SYNCPOINT:      return "The syncpoint did not come from this sound handle. ";
73         case FMOD_ERR_INVALID_VECTOR:         return "The vectors passed in are not unit length, or perpendicular. ";
74         case FMOD_ERR_MAXAUDIBLE:             return "Reached maximum audible playback count for this sound's soundgroup. ";
75         case FMOD_ERR_MEMORY:                 return "Not enough memory or resources. ";
76         case FMOD_ERR_MEMORY_CANTPOINT:       return "Can't use FMOD_OPENMEMORY_POINT on non PCM source data, or non mp3/xma/adpcm data if FMOD_CREATECOMPRESSEDSAMPLE was used. ";
77         case FMOD_ERR_MEMORY_SRAM:            return "Not enough memory or resources on console sound ram. ";
78         case FMOD_ERR_MUSIC_NOCALLBACK:       return "The music callback is required, but it has not been set. ";
79         case FMOD_ERR_MUSIC_NOTFOUND:         return "The requested music entity could not be found. ";
80         case FMOD_ERR_MUSIC_UNINITIALIZED:    return "Music system is not initialized probably because no music data is loaded. ";
81         case FMOD_ERR_NEEDS2D:                return "Tried to call a command on a 3d sound when the command was meant for 2d sound. ";
82         case FMOD_ERR_NEEDS3D:                return "Tried to call a command on a 2d sound when the command was meant for 3d sound. ";
83         case FMOD_ERR_NEEDSHARDWARE:          return "Tried to use a feature that requires hardware support.  (ie trying to play a GCADPCM compressed sound in software on Wii). ";
84         case FMOD_ERR_NEEDSSOFTWARE:          return "Tried to use a feature that requires the software engine.  Software engine has either been turned off, or command was executed on a hardware channel which does not support this feature. ";
85         case FMOD_ERR_NET_CONNECT:            return "Couldn't connect to the specified host. ";
86         case FMOD_ERR_NET_SOCKET_ERROR:       return "A socket error occurred.  This is a catch-all for socket-related errors not listed elsewhere. ";
87         case FMOD_ERR_NET_URL:                return "The specified URL couldn't be resolved. ";
88         case FMOD_ERR_NET_WOULD_BLOCK:        return "Operation on a non-blocking socket could not complete immediately. ";
89         case FMOD_ERR_NOTREADY:               return "Operation could not be performed because specified sound/DSP connection is not ready. ";
90         case FMOD_ERR_OUTPUT_ALLOCATED:       return "Error initializing output device, but more specifically, the output device is already in use and cannot be reused. ";
91         case FMOD_ERR_OUTPUT_CREATEBUFFER:    return "Error creating hardware sound buffer. ";
92         case FMOD_ERR_OUTPUT_DRIVERCALL:      return "A call to a standard soundcard driver failed, which could possibly mean a bug in the driver or resources were missing or exhausted. ";
93         case FMOD_ERR_OUTPUT_ENUMERATION:     return "Error enumerating the available driver list. List may be inconsistent due to a recent device addition or removal. ";
94         case FMOD_ERR_OUTPUT_FORMAT:          return "Soundcard does not support the minimum features needed for this soundsystem (16bit stereo output). ";
95         case FMOD_ERR_OUTPUT_INIT:            return "Error initializing output device. ";
96         case FMOD_ERR_OUTPUT_NOHARDWARE:      return "FMOD_HARDWARE was specified but the sound card does not have the resources necessary to play it. ";
97         case FMOD_ERR_OUTPUT_NOSOFTWARE:      return "Attempted to create a software sound but no software channels were specified in System::init. ";
98         case FMOD_ERR_PAN:                    return "Panning only works with mono or stereo sound sources. ";
99         case FMOD_ERR_PLUGIN:                 return "An unspecified error has been returned from a 3rd party plugin. ";
100         case FMOD_ERR_PLUGIN_INSTANCES:       return "The number of allowed instances of a plugin has been exceeded. ";
101         case FMOD_ERR_PLUGIN_MISSING:         return "A requested output, dsp unit type or codec was not available. ";
102         case FMOD_ERR_PLUGIN_RESOURCE:        return "A resource that the plugin requires cannot be found. (ie the DLS file for MIDI playback or other DLLs that it needs to load) ";
103         case FMOD_ERR_PRELOADED:              return "The specified sound is still in use by the event system, call EventSystem::unloadFSB before trying to release it. ";
104         case FMOD_ERR_PROGRAMMERSOUND:        return "The specified sound is still in use by the event system, wait for the event which is using it finish with it. ";
105         case FMOD_ERR_RECORD:                 return "An error occured trying to initialize the recording device. ";
106         case FMOD_ERR_REVERB_INSTANCE:        return "Specified instance in FMOD_REVERB_PROPERTIES couldn't be set. Most likely because it is an invalid instance number or the reverb doesnt exist. ";
107         case FMOD_ERR_SUBSOUNDS:              return "The error occured because the sound referenced contains subsounds when it shouldn't have, or it doesn't contain subsounds when it should have.  The operation may also not be able to be performed on a parent sound, or a parent sound was played without setting up a sentence first. ";
108         case FMOD_ERR_SUBSOUND_ALLOCATED:     return "This subsound is already being used by another sound, you cannot have more than one parent to a sound.  Null out the other parent's entry first. ";
109         case FMOD_ERR_SUBSOUND_CANTMOVE:      return "Shared subsounds cannot be replaced or moved from their parent stream, such as when the parent stream is an FSB file. ";
110         case FMOD_ERR_SUBSOUND_MODE:          return "The subsound's mode bits do not match with the parent sound's mode bits.  See documentation for function that it was called with. ";
111         case FMOD_ERR_TAGNOTFOUND:            return "The specified tag could not be found or there are no tags. ";
112         case FMOD_ERR_TOOMANYCHANNELS:        return "The sound created exceeds the allowable input channel count.  This can be increased using the maxinputchannels parameter in System::setSoftwareFormat. ";
113         case FMOD_ERR_UNIMPLEMENTED:          return "Something in FMOD hasn't been implemented when it should be! contact support! ";
114         case FMOD_ERR_UNINITIALIZED:          return "This command failed because System::init or System::setDriver was not called. ";
115         case FMOD_ERR_UNSUPPORTED:            return "A command issued was not supported by this object.  Possibly a plugin without certain callbacks specified. ";
116         case FMOD_ERR_UPDATE:                 return "An error caused by System::update occured. ";
117         case FMOD_ERR_VERSION:                return "The version number of this file format is not supported. ";
118         case FMOD_OK:                         return "No errors.";
119         default :                             return "Unknown error.";
120     };
121 }
122 
123 #endif
124