Skip to content

Latest commit

 

History

History
177 lines (149 loc) · 4.11 KB

finderrors.c

File metadata and controls

177 lines (149 loc) · 4.11 KB
 
Apr 29, 2008
Apr 29, 2008
1
2
3
4
5
6
7
8
9
/**
* MojoShader; generate shader programs from bytecode of compiled
* Direct3D shaders.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
10
11
12
13
14
15
16
17
18
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <sys/types.h>
#include <errno.h>
#include "mojoshader.h"
Apr 22, 2008
Apr 22, 2008
19
20
21
22
#if FINDERRORS_COMPILE_SHADERS
#include "SDL.h"
#endif
Apr 30, 2008
Apr 30, 2008
23
#ifdef _MSC_VER
Apr 30, 2008
Apr 30, 2008
24
25
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
Apr 30, 2008
Apr 30, 2008
26
#include <malloc.h> // for alloca().
Apr 30, 2008
Apr 30, 2008
27
#define snprintf _snprintf
Apr 30, 2008
Apr 30, 2008
28
29
#else
#include <dirent.h>
Apr 30, 2008
Apr 30, 2008
30
31
#endif
Apr 22, 2008
Apr 22, 2008
32
#define report printf
Apr 22, 2008
Apr 22, 2008
33
Apr 30, 2008
Apr 30, 2008
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
static int do_file(const char *profile, const char *dname, const char *fn, int *total)
{
int do_quit = 0;
#if FINDERRORS_COMPILE_SHADERS
SDL_Event e; // pump event queue to keep OS happy.
while (SDL_PollEvent(&e))
{
if (e.type == SDL_QUIT)
do_quit = 1;
} // while
SDL_GL_SwapBuffers();
#endif
if (do_quit)
{
report("FAIL: user requested quit!\n");
return 0;
} // if
if (strstr(fn, ".bytecode") == NULL)
return 1;
(*total)++;
char *fname = (char *) alloca(strlen(fn) + strlen(dname) + 1);
sprintf(fname, "%s/%s", dname, fn);
FILE *io = fopen(fname, "rb");
if (io == NULL)
{
report("FAIL: %s fopen() failed.\n", fname);
return 1;
} // if
static unsigned char buf[1024 * 256];
int rc = fread(buf, 1, sizeof (buf), io);
fclose(io);
if (rc == -1)
{
report("FAIL: %s %s\n", fname, strerror(errno));
return 1;
} // if
#if FINDERRORS_COMPILE_SHADERS
MOJOSHADER_glShader *shader = MOJOSHADER_glCompileShader(buf, rc);
if (shader == NULL)
report("FAIL: %s %s\n", fname, MOJOSHADER_glGetError());
else
report("PASS: %s\n", fname);
MOJOSHADER_glDeleteShader(shader);
#else
const MOJOSHADER_parseData *pd = MOJOSHADER_parse(profile, buf, rc, 0, 0, 0);
if (pd->error != NULL)
report("FAIL: %s %s\n", fname, pd->error);
else
report("PASS: %s\n", fname);
MOJOSHADER_freeParseData(pd);
#endif
return 1;
} // do_file
Apr 22, 2008
Apr 22, 2008
97
static int do_dir(const char *dname, const char *profile)
98
99
{
int total = 0;
Apr 30, 2008
Apr 30, 2008
100
101
102
103
#ifdef _MSC_VER
WIN32_FIND_DATA dent;
HANDLE dirp = INVALID_HANDLE_VALUE;
Apr 30, 2008
Apr 30, 2008
104
FindFirstFileA(dname, &dent);
Apr 30, 2008
Apr 30, 2008
105
106
107
108
109
110
if (dirp != INVALID_HANDLE_VALUE)
{
do
{
if (!do_file(profile, dname, dent.cFileName, &total))
break;
Apr 30, 2008
Apr 30, 2008
111
} while (FindNextFileA(dirp, &dent) != 0);
Apr 30, 2008
Apr 30, 2008
112
113
114
115
CloseHandle(dirp);
} // if
#else
struct dirent *dent = NULL;
116
117
118
119
120
DIR *dirp = opendir(dname);
if (dirp != NULL)
{
while ((dent = readdir(dirp)) != NULL)
{
Apr 30, 2008
Apr 30, 2008
121
if (!do_file(profile, dname, dent->d_name, &total))
Apr 22, 2008
Apr 22, 2008
122
break;
123
124
125
} // while
closedir(dirp);
} // if
Apr 30, 2008
Apr 30, 2008
126
#endif
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
return total;
} // do_dir
int main(int argc, char **argv)
{
//printf("MojoShader finderrors\n");
//printf("Compiled against version %d\n", MOJOSHADER_VERSION);
//printf("Linked against version %d\n", MOJOSHADER_version());
//printf("\n");
if (argc <= 2)
printf("\n\nUSAGE: %s <profile> [dir1] ... [dirN]\n\n", argv[0]);
else
{
int total = 0;
Apr 22, 2008
Apr 22, 2008
144
int i;
Apr 27, 2008
Apr 27, 2008
145
const char *profile = argv[1];
146
Apr 22, 2008
Apr 22, 2008
147
148
#if FINDERRORS_COMPILE_SHADERS
SDL_Init(SDL_INIT_VIDEO);
Apr 27, 2008
Apr 27, 2008
149
SDL_GL_LoadLibrary(NULL);
Apr 22, 2008
Apr 22, 2008
150
SDL_SetVideoMode(640, 480, 0, SDL_OPENGL);
Apr 28, 2008
Apr 28, 2008
151
MOJOSHADER_glContext *ctx;
Apr 28, 2008
Apr 28, 2008
152
ctx = MOJOSHADER_glCreateContext(profile, SDL_GL_GetProcAddress, 0, 0, 0);
Apr 28, 2008
Apr 28, 2008
153
if (ctx == NULL)
Apr 27, 2008
Apr 27, 2008
154
{
Apr 28, 2008
Apr 28, 2008
155
printf("MOJOSHADER_glCreateContext() fail: %s\n", MOJOSHADER_glGetError());
Apr 27, 2008
Apr 27, 2008
156
157
158
SDL_Quit();
return 1;
} // if
Apr 28, 2008
Apr 28, 2008
159
MOJOSHADER_glMakeContextCurrent(ctx);
Apr 22, 2008
Apr 22, 2008
160
161
#endif
162
for (i = 2; i < argc; i++)
Apr 22, 2008
Apr 22, 2008
163
total += do_dir(argv[i], profile);
164
165
166
printf("Saw %d bytecode files.\n", total);
Apr 22, 2008
Apr 22, 2008
167
#if FINDERRORS_COMPILE_SHADERS
Apr 28, 2008
Apr 28, 2008
168
MOJOSHADER_glDestroyContext(ctx);
Apr 22, 2008
Apr 22, 2008
169
170
SDL_Quit();
#endif
171
172
173
174
175
176
} // else
return 0;
} // main
// end of finderrors.c ...