2 Simple DirectMedia Layer
3 Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
21 #include "./SDL_internal.h"
23 #include "SDL_hints.h"
24 #include "SDL_error.h"
27 /* Assuming there aren't many hints set and they aren't being queried in
28 critical performance paths, we'll just use linked lists here.
30 typedef struct SDL_HintWatch {
31 SDL_HintCallback callback;
33 struct SDL_HintWatch *next;
36 typedef struct SDL_Hint {
39 SDL_HintPriority priority;
40 SDL_HintWatch *callbacks;
41 struct SDL_Hint *next;
44 static SDL_Hint *SDL_hints;
47 SDL_SetHintWithPriority(const char *name, const char *value,
48 SDL_HintPriority priority)
54 if (!name || !value) {
58 env = SDL_getenv(name);
59 if (env && priority < SDL_HINT_OVERRIDE) {
63 for (hint = SDL_hints; hint; hint = hint->next) {
64 if (SDL_strcmp(name, hint->name) == 0) {
65 if (priority < hint->priority) {
68 if (!hint->value || !value || SDL_strcmp(hint->value, value) != 0) {
69 for (entry = hint->callbacks; entry; ) {
70 /* Save the next entry in case this one is deleted */
71 SDL_HintWatch *next = entry->next;
72 entry->callback(entry->userdata, name, hint->value, value);
75 SDL_free(hint->value);
76 hint->value = value ? SDL_strdup(value) : NULL;
78 hint->priority = priority;
83 /* Couldn't find the hint, add a new one */
84 hint = (SDL_Hint *)SDL_malloc(sizeof(*hint));
88 hint->name = SDL_strdup(name);
89 hint->value = value ? SDL_strdup(value) : NULL;
90 hint->priority = priority;
91 hint->callbacks = NULL;
92 hint->next = SDL_hints;
98 SDL_SetHint(const char *name, const char *value)
100 return SDL_SetHintWithPriority(name, value, SDL_HINT_NORMAL);
104 SDL_GetHint(const char *name)
109 env = SDL_getenv(name);
110 for (hint = SDL_hints; hint; hint = hint->next) {
111 if (SDL_strcmp(name, hint->name) == 0) {
112 if (!env || hint->priority == SDL_HINT_OVERRIDE) {
122 SDL_AddHintCallback(const char *name, SDL_HintCallback callback, void *userdata)
125 SDL_HintWatch *entry;
128 if (!name || !*name) {
129 SDL_InvalidParamError("name");
133 SDL_InvalidParamError("callback");
137 SDL_DelHintCallback(name, callback, userdata);
139 entry = (SDL_HintWatch *)SDL_malloc(sizeof(*entry));
144 entry->callback = callback;
145 entry->userdata = userdata;
147 for (hint = SDL_hints; hint; hint = hint->next) {
148 if (SDL_strcmp(name, hint->name) == 0) {
153 /* Need to add a hint entry for this watcher */
154 hint = (SDL_Hint *)SDL_malloc(sizeof(*hint));
160 hint->name = SDL_strdup(name);
162 hint->priority = SDL_HINT_DEFAULT;
163 hint->callbacks = NULL;
164 hint->next = SDL_hints;
168 /* Add it to the callbacks for this hint */
169 entry->next = hint->callbacks;
170 hint->callbacks = entry;
172 /* Now call it with the current value */
173 value = SDL_GetHint(name);
174 callback(userdata, name, value, value);
178 SDL_DelHintCallback(const char *name, SDL_HintCallback callback, void *userdata)
181 SDL_HintWatch *entry, *prev;
183 for (hint = SDL_hints; hint; hint = hint->next) {
184 if (SDL_strcmp(name, hint->name) == 0) {
186 for (entry = hint->callbacks; entry; entry = entry->next) {
187 if (callback == entry->callback && userdata == entry->userdata) {
189 prev->next = entry->next;
191 hint->callbacks = entry->next;
203 void SDL_ClearHints(void)
206 SDL_HintWatch *entry;
210 SDL_hints = hint->next;
212 SDL_free(hint->name);
213 SDL_free(hint->value);
214 for (entry = hint->callbacks; entry; ) {
215 SDL_HintWatch *freeable = entry;
223 /* vi: set ts=4 sw=4 expandtab: */