summaryrefslogtreecommitdiff
path: root/VisualC.html
blob: df746c78e4fdedeea59f7a25a55c8eea8d3ec74f (plain)
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
<HTML>



<HEAD>



<TITLE> Using SDL with Microsoft Visual C++ 5 and 6 </TITLE>



</HEAD>



<BODY>



<H1> Using SDL with Microsoft Visual C++ 5 and 6 </H1>

<H3>
     by <A HREF="mailto:snowlion@sprynet.com"> Lion Kimbro </A>
</H3>



<p>
    You can either use the precompiled libraries from
    <A HREF="http://www.libsdl.org/download.html">
    the SDL Download web site </A>,
    or you can build SDL yourself.
</p>


<H3> Building SDL </H3>

<P>
     Unzip the <CODE>VisualC.zip</CODE> file into the directory
     that contains this file (<CODE>VisualC.html</CODE>).
</P>

<P>
     Be certain that you unzip <CODE> VisualC.zip </CODE>
     into <strong>this</strong> directory and not any other
     directory. If you are using WinZip, be careful to
     make sure that it extracts to <strong>this</strong>
     folder, because it's convenient feature of
     unzipping to a folder with the name of the
     file currently being unzipped will get you in
     trouble if you use it right now. And that's all
     I have to say about that.
</P>

<P>
     Now that it's unzipped, go into the VisualC directory
     that is created, and double-click on the VC++
     workspace file &quot;<CODE>SDL.dsw</CODE>&quot;.
     This should open up VisualC.
</P>

<P>
     You may be prompted at this point to upgrade the
     workspace, should you be using a more recent version
     of Visual C++. If so, allow the workspace to be
     upgraded.
</P>


<P>
     Build the <CODE>.dll</CODE> and <CODE>.lib</CODE> files.
</P>

<P>
     This is done by right clicking on each project in turn
     (Projects are listed in the Workspace panel in the
     FileView tab), and selecting &quot;Build&quot;.
</P>

<P>
     You may get a few warnings, but you should not get
     any errors. You do have to have at least the DirectX
     5 SDK installed, however. (I believe...) The latest
     version of DirectX can be downloaded or purchased
     on a cheap CD (my recommendation) from
     <A HREF="http://www.microsoft.com"> Microsoft </A>.
</P>

<P>
    Later, we will refer to the following .lib and .dll
    files that have just been generated:
</P>

    <list>
    <li> SDL.dll
    <li> SDL.lib
    <li> SDLmain.lib
    </list>

<P>
    Search for these using the Windows Find (Windows-F)
    utility, if you don't already know where they should be.
    For those of you with a clue, look inside the Debug
    or Release directories of the subdirectories of the
    VisualC folder. (It might be easier to just use
    Windows Find if this sounds confusing. And don't worry
    about needing a clue; we all need visits from the
    clue fairy frequently.)
</P>



<H3> Creating a Project with SDL </H3>

<P>
     Create a project as a Win32 Application.
</P>

<P>
     Create a C++ file for your project.
</P>

<P>
     Set the C runtime to "Multi-threaded DLL" in the menu:
     <CODE> Project|Settings|C/C++ tab|Code Generation|Runtime Library </CODE>.
</P>

<P>
     Add the SDL <CODE>include</CODE> directory to your list
     of includes in the menu:
     <CODE> Project|Settings|C/C++ tab|Preprocessor|Additional include directories </CODE>.
</P>

<P>
     The &quot;include directory&quot; I am referring to is the
     <CODE>include</CODE> folder within the main SDL
     directory (the one that this HTML file located
     within.
</P>

<P>
     Now we're going to use the files that we had created
     earlier in the Build SDL step.
</P>

<P>
     Copy the following files into your Project directory:
</P>

     <list>
     <li> SDL.dll </li>
     </list>

<P>
     Copy the following files into your Project directory,
     and <em>add them to your Project</em> as well:
</P>

     <list>
     <li> SDL.lib </li>
     <li> SDLmain.lib </li>
     </list>

<P>
     (To add them to your project, right click on your
     project, and select &quot;Add files to project&quot;)
</P>

<P>
     (I believe that it's not necessary to actually
     copy the .lib files into your directory; you only
     have to be certain that you add them to your Project.
     If someone is so inclined, correct this document, or
     <A HREF="mailto:snowlion@sprynet.com">
     e-mail me </A>,
     and I'll fix this document.)
</P>



<H3> SDL 101, First Day of Class </H3>

<P>
     Now create the basic body of your project.
     The body of your program should take the following form:

<CODE>
<PRE>
#include &quot;SDL.h&quot;

int main( int argc, char* argv[] )
{
  // Body of the program goes here.
  return 0;
}
</PRE>
</CODE>
</P>

<H3> That's it! </H3>

<P>
     I hope that this document has helped you get
     through the most difficult part of using the
     SDL: installing it. Suggestions for improvements
     to this document should be sent to the writers
     of this document.
</P>

<P>
     Thanks to Paulus Esterhazy (pesterhazy@gmx.net), for the work on VC++ port.
</P>

<P>
     This document was originally called &quot;VisualC.txt&quot;,
     and was written by 
     <A HREF="mailto:slouken@libsdl.org">Sam Lantinga</A>.
</P>

<P>
     Later, it was converted to HTML and expanded into
     the document that you see today by 
     <A HREF="mailto:snowlion@sprynet.com">Lion Kimbro</A>.
</P>



</BODY>



</HTML>