Geometry.Net - the online learning center
Home  - Basic_S - Sdl Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 5     81-100 of 101    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Sdl Programming:     more books (23)
  1. Focus On SDL (The Premier Press Game Development Series) by Ernest Pazera, 2002-11-18
  2. Sdl '91: Evolving Methods : Proceedings of the Fifth Sdl Forum Glasgow, Scotland, Uk, 29 September-4 October, 1991 by 1991, Glasgow, Scotland) SDL Forum (5th, 1991-08
  3. Sdl '87: State of the Art and Future Trends : Proceedings of the Third Sdl Forum the Hague, the Netherlands, April 1987 by R. Saracco, 1987-10
  4. Systems Engineering with SDL: Developing Performance-Critical Communication Systems by Andreas Mitschele-Thiel, 2001-02-01
  5. SDL 2005: Model Driven: 12th International SDL Forum, Grimstad, Norway, June 20-23, 2005, Proceedings (Lecture Notes in Computer Science)
  6. Sdl '93: Using Objects : Proceedings of the Sixth Sdl Forum Darmstadt, Germany, 11-15 October, 1993 by Ove Faergemand, 1993-10
  7. Validation of Telecom Systems with SDL by Laurent Doldi, 2003-06-13
  8. SDL 2007: Design for Dependable Systems: 13th International SDL Forum, Paris, France, September 18-21, 2007, Proceedings (Lecture Notes in Computer Science)
  9. Sdl '99
  10. Telecommunications and beyond: The Broader Applicability of SDL and MSC: Third International Workshop, SAM 2002, Aberystwyth, UK, June 24-26, 2002. Revised Papers (Lecture Notes in Computer Science)
  11. SDL '95 with MSC in CASE
  12. SDL 2003: System Design: 11th International SDL Forum, Stuttgart, Germany, July 1-4, 2003, Proceedings (Lecture Notes in Computer Science)
  13. Telecommunications and beyond: The Broader Applicability of SDL and MSC: Third International Workshop, SAM 2002, Aberystwyth, UK, June 24-26, 2002. Revised Papers (Lecture Notes in Computer Science)
  14. SDL '97: Time for Testing

81. Re: GTK For Game Programming?
Re GTK For Game programming? Look at sdldemos/gtk/ sources. http//freshmeat.net/appindex/1999/01/18/916649679.html Yes sdl looks cool.
http://mail.gnome.org/archives/gtk-list/1999-September/msg00407.html
Date Prev Date Next Thread Prev Thread Next ... Author Index
Re: GTK For Game Programming?
  • From CC : gnome-list gnome org, gtk-list redhat com, gnome-devel-list gnome org Subject : Re: GTK For Game Programming? Date : Mon, 20 Sep 1999 10:58:59 -0400
http://freshmeat.net/appindex/1999/01/18/916649679.html Yes SDL looks cool. I'm not sure how much it provides by way of widgets, but it does provide threading layers, graphics, networking, etc. SEGV - http://www.cgocable.net/~mlepage/ Features Minion real-time strategy game, RTS game programming info, GTK+ tutorial, etc. Date Prev Date Next Thread Prev Thread Next ... Author Index

82. LinuxDevCenter.com: Animation In SDL
Every sdl program must first initialize sdl, then select and initialize a video The main() program puts everything together. It first initializes sdl.
http://www.linuxdevcenter.com/pub/a/linux/2003/05/15/sdl_anim.html
Sign In/My Account View Cart Articles Weblogs ... eDocuments SAP TechEd '05. Your education in innovation. LinuxDevCenter.com
All of O'Reilly Login
Register

Manage Newsletters

Register Your Books
Sponsored Zones
Novell Learning Channel
What are those funny green links? Linux Content All Articles Interviews Newsletters Linux in the Enterprise ... Security Alerts
Linux Topics
Administration
Browsers Caching Certification ... X Window System
Sites
codezoo.com

Databases
LinuxDevCenter.com MacDevCenter.com ... WebServices.XML.com Affiliate Sites LinuxQuestions.org OSDir.com Servlets.com Resource Centers Bioinformatics C/C++ Databases Digital Media ... Understanding the Linux Kernel linuxdevcenter.com supported by: Computer Community Print Email Discuss Add to Project Trackbacks Blog this Bookmark with del.icio.us
Animation in SDL
by Bob Pendleton
What is SDL?
The Simple DirectMedia Layer ( SDL ), a powerful, commercial grade and cross platform game development library, has been used to write or port more than 40 commercial games. SDL runs on pretty much any PC or PDA which has a graphic screen and something at least roughly like an operating system. Full documentation for SDL can be downloaded or read online . You can also look at the SDL documentation project for user annotated documentation. You can find the latest version of SDL at

83. Fast Event Library Documentation
In your program if you use these sdl functions you can not also use the fast event library functions and vice versa. It is also not permitted to use
http://www.gameprogrammer.com/fastevents/fastevents2.html
GameProgWiki Mailing List
Thread Index

Date Index
...
Home
Fast Event Library Documentation
Bob Pendleton Download Source in .tar.gz
Download Source in .zip

Download Test Programs:
thread1.c

thread2.c

thread3.c

thread4.c
...
Part1: Fast Event Processing in SDL
The obvious next step in a story like this one is to take the test code and turn it into a general purpose library. So, I did. The library is very small and has the name of FastEvents. You can download the complete library along with a GNU/Linux makefile file and a test application using the links at the top of the page. The functions in the fast events library fall in two distinct groups, the first group, , and are house keeping functions used to start and stop the library and report errors generated by the library. The second class of functions are a direct replacement for the SDL functions , and . In your program if you use these SDL functions you can not also use the fast event library functions and vice versa. It is also not permitted to use with the fast event library. But, then using any kind of peep events function is a bad idea at any time. The thread4.c

84. Tille's Homepage
Program name startsdl.c */ /* This is a test with sdl (see Should the program fail, the sdl framework will try to tell you why it did so.
http://tille.xalasys.com/training/sdl/sdlstart.php
Tille's Site
/etc /net /opt /proc
The most basic SDL program
Before starting on this, you should read a bit in and read the tutorials that can be found at libsdl.org
The C program
Time to take out your favorite editor! Information about the functions can be found in any SDL tutorial. You need to activate and properly shutdown the SDL system. You have to specify which SDL subsystem you are going to use in your program. If you don't do this, it won't compile (not enough arguments). So we specify the CD-ROM subsystem, on which we are going to build the next exercise. We're not going to use that subsystem in this first test, this is just to see that you can compile an SDL program. The SDL_GetError function is defined in the file SDL_error.h in /usr/include/SDL/ . We do not need to refer to this file, because our program will include /usr/include/SDL/SDL.h , which contains references to the SDL_error.h file and all the other files in /usr/include/SDL/ Another thing that I found very disturbing is that in the docs you will sometimes see the expression , and in other places atexit(SDL_Quit) . Turns out that atexit is sort of a C builtin command, that everybody knows about, but that was not discussed in the books I was told to read. We will use the

85. Tille's Homepage
For a basic sdl program, you only need to include the sdl headers in your C program, while as other programs dealing with system hardware often need a whole
http://tille.xalasys.com/training/sdl/intro.php
Tille's Site
/etc /net /opt /proc
So you know a bit of C
If you don't, get yourself a copy of The C programming language (ISBN 0-13-110163-3) or A Book on C (ISBN 0-333-36821-5).
What is SDL?
Simple DirectMedia Layer is a cross-platform multimedia library designed to provide level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. It is used by MPEG playback software, emulators, and many popular games. Simple DirectMedia Layer supports Linux, Windows, BeOS, MacOS Classic, MacOS X, FreeBSD, OpenBSD, BSD/OS, Solaris, and IRIX. SDL is written in C, but works with C++ natively, and has bindings to several other languages, including Ada, Eiffel, Java, Lua, ML, Perl, PHP, Pike, Python, and Ruby.
Why SDL?
In short: you can do something on your system with SDL very quickly, without the requirement of having an in-depth knowledge about special libraries, interfaces, hardware, system calls or parameters. A minimal knowledge of the C programming language is the only thing you need. Read on if you want to hear the real reasons, or go directly to the course This might just have well been called the "getting started with C and Linux" notes, or "your first steps with Xlib". Let me tell you how it happened to be about SDL.

86. SDL - Sigma Definition Language
Giving a look to the typical structure of a sdl program, we recognize immediately that it is like RDL programs - subdivided into two main parts the
http://www.informatik.uni-giessen.de/staff/kutrib/scarlet/node63.html
..Statement Part) Contents Index (Declaration Part..)
4. SDL - Sigma Definition Language
In this chapter we are going to discuss the second programming language, which is also an integral part of S CARLET , the so-called Sigma Definition Language (SDL). It deals with the typical behaviour of a CA, which is given by its local rule , a function often called . (This is, by the way, the reason for the name of the language).
To be able to design a local rule in S CARLET , we have to know Unlike this, the extension of the retina or even its initial configuration are not relevant in this context. Because of that, indications concerning the retina are saved in a separate file as a RDL program. (This has already been the topic of the preceding chapter.)
Later a complete CA will be constructed by S CARLET using the information of a RDL program as well as of a compiled SDL program. What are exactly the conditions to grant the compatibility ? We are going to see that in the last paragraph of this chapter.

87. Pygame - Python Game Development
PyWeek programming Challenge. The date for the first PyWeek challenge has been set Sunday August 28 to PyWeek Game programming Challenge Jul 8, 2005
http://www.pygame.org/
Takes the "C++"
out of "Game Development"
An Open Source
Community Project pygame News
About

Screenshots

Downloads
...
What's New

projects Games
Demos

Contests

Libraries
... Applications members User Name: Password: New members: Sign Up pygame is pygame.org is
News
Pygame 1.7.1 is released. - Aug 16, 2005
A new release of pygame is available. Download it now. The main focus of this release is bug fixes. See what is new for details.
PyWeek Game Contest Open for Registration - Jul 28, 2005
PyWeek Programming Challenge The date for the first PyWeek challenge has been set: Sunday August 28 to Sunday September 4 (00:00UTC to 00:00UTC), 2005. The challenge timetable (all events at 00:00 UTC): Sunday 2005/08/21 Theme voting round 1 commences Saturday 2005/08/27 Theme voting round 2 commences Sunday 2005/08/28 Competition start Sunday 2005/09/04 Competition end, judging begins Sunday 2005/09/18 Judging closes, winners announced See the rules page for more details about how the challenge works.
Welcome to the new pygame website! - Jul 14, 2005
Welcome
The new pygame website was deployed for public use. I hope you find the new interface and features enjoyable. If you have any suggestions, please send them to

88. Assessment Challenges In Supported Distance Learning
how to include sdl program planning needs in the State s Guidelines for Writing a The second meeting may be the orientation to the sdl program,
http://www.sabes.org/resources/adventures/vol15/15hooper.htm
About SABES Contact Us Site Map What's New ... Other Sites
Assessment Challenges in Supported Distance Learning: How the ABE Distance Learning Project is Implementing the Massachusetts ABE Assessment Policies and Procedures
Roger Hooper
Massachusetts ABE Distance Learning Project
ALRI
Home

Volume 15

Spring 2003
CONTENTS Introduction: Assessment in Motion
The NIFL LINCS Assessment Special Collection ... Briefly Annotated Bibliography of Articles Focusing on In-Take, Placement, and Goal-Setting T he Massachusetts ABE Distance Learning Project is a statewide
collaborative including three specially funded demonstration pilot sites, and statewide project coordination staff. Our vision of "supported distance learning" (SDL) includes delivery of content and instruction largely through technology and multimedia curriculum packages, but also includes learners in some face to face contact with teachers, counselors, tutors and other students for support and assessment. The integration of various supports into a distance learning delivery system reflects the commonly understood needs of all adult basic education learners. The mission of the Project is to research which supports best help adult learners to succeed in distance learning, to document models of effective SDL programming, and to recommend by the end of FY'04 a schedule of program quality indicators and cost factors for SDL. The Massachusetts Department of Education has committed to evaluating our recommendations prior to deciding whether to offer SDL among the program options fundable to all eligible programs under the next state multi-year ABE funding cycle.

89. CodeDread.com :: View Topic - Cant Seem To Get This One Segment Of Code Right
they just press p while their sdl program is running then after that it save on the actual sdl program besides working with Truetype fonts(which I
http://www.codedread.com/forum/post-383.html&sid=b893982da6f9a8bb1093c7d820f786a
CodeDread.com
FAQ Search Memberlist Usergroups Register Profile Log in to check your private messages Log in
cant seem to get this one segment of code right

CodeDread.com Forum Index
Coding View previous topic ... View next topic Author Message
Frequent Poster
Joined: 17 May 2004
Posts: 62
Location: United States
Posted: 2004-09-18 12:03 am Post subject: cant seem to get this one segment of code right Hi,
I've been trying to get this one segment of my code in SDL right. The purpose of this section is if the user wants to print a text file from their harddrive they just press p while their SDL program is running then after that it asks you are you sure you want to print then I hit y and enter and after that you specify the program by:
lpr filename.txt Now the problem resides where I specify the command lpr filename.txt. After pressing enter it terminates immediatly. The same method works with print screen and the screenshots mechanism works flawlessly. Heres the segment of code for the problem: Code: char y,n; int user = 0;

90. IDevGames - Community Forum - Game Porting Requirments
Get sdl added to the program • Redo cocoa windows with sdl Windows I can t even get a sdl program to run in XCode without references to cocoa with the
http://idevgames.com/forum/showthread.php?t=9258&page=1

91. SDL Application Software
, Full Price, Educational Discount. DataLab, A program for statistical data analysis, Euro 79, none......sdl Component Suite Software,
http://www.lohninger.com/appsoft.html
Application Software Home SDL Component Suite Application Software DataLab SDLRename CLUSTER RANDGEN ... Helpdesk This page provides a survey on the software regarding statistics, chemometrics, and chemistry. Note, that some of the software is shareware, some is freeware and some software is only a demo copy of a commerically available full version. Software Description Full Price Educational
Discount DataLab
A program for statistical data analysis Euro 79 none SDLRename A program for renaming thousands of files at once Euro 28 none CLUSTER A program to perform a cluster analysis FREE FREE RANDGEN A configurable random number generator FREE FREE TOPIX A program for the calculation of descriptors of chemical structures Euro 249 ISEFOSS A program to search for similar structures in a chemical structure database Euro 59 none SDL KnowledgeBase A database containing about 4800 tips and trick on programming. FREE FREE

92. LinuxQuestions.org - SDL Problem... Simple Program. - Where Linux Users Come For
LinuxQuestions.org offers a free Linux forum where Linux newbies can ask questions and Linux experts can offer advice. Topics include security, installation
http://www.linuxquestions.org/questions/history/345829
Help answer threads with 0 replies Home Forums HCL ... Programming Author Thread (113 views) RHLinuxGUY
Member
Registered: Oct 2003
Location: SoCal
Distribution: Slackware 10, Red Hat 9.
Posts: 527
HCL Entries

Reviews

SDL problem... simple program. post #1 Just to let everyone know that I'm a newbie when it comes to programming. I bought C++ for dummies, and read almost 200 pages of it. I am just expiramenting with the GUI and SDL. Now...
... when I try to compile this program... (all I am trying to do is little by little put a little bit of SDL information in some code I write, to understand it better)
using namespace std; int main(int nNumberofArgs, char* pszArgs[]) atexit(SDL_Quit); return 0; ... I get this error: anyone@george's:~$ g++ sdl.cpp -o sdl /tmp/cc0ODN6m.o(.text+0x16): In function `main': : undefined reference to `SDL_Init' /tmp/cc0ODN6m.o(.text+0x36): In function `main': : undefined reference to `SDL_Quit' collect2: ld returned 1 exit status anyone@george's:~$ When I try to compile it with it linked to SDL... g++ sdl.cpp -o sdl -lSDL

93. Vesta SDL Programmer's Reference
Evaluating a Vesta sdl program can be thought of as analogous to running make (although sdl is much more powerful than make s description language).
http://www.vestasys.org/doc/sdl-ref/
Vesta SDL Programmer's Reference
Introduction
The Vesta System Description Language is a functional programming language used to define the instructions for the automated processing of source files through a series of tools (i.e. building a program from source code). Evaluating a Vesta SDL program can be thought of as analogous to running make (although SDL is much more powerful than make 's description language). This document is a tutorial and reference for the Vesta SDL. It's intended to make it a little easier for people new to the languag to get started than the documentation provided in the language specification
Sections
  • About the Guide - A little history, and a few caveats. (It's short, and you should really read it.) Explanatory Dialogues - These sections will take you through certain aspects of the language and how it is used.
      Walkthrough - Probably the best place to start. Gets your feet wet with a few Vesta evaluator models. Bridge Dissection - Look inside a simple bridge. Both its structure and how it works are described in detail.
    Reference - These sections describe the language in detail.

94. Scenarios
There are two custom languages that are used to write scenarios, sdl and PCL. the scenario file can contain both the sdl part and PCL program part of
http://www.neuro-bs.com/pres_docs/html/02_getting_started/04_scenarios/
Presentation Help : Help Guide Getting Started Prev Next
Scenarios
Scenarios are the core unit in Presentation.
A scenario is a sequence of actions that Presentation performs continuously before returning control of the computer back to the experimenter. An experiment implemented in Presentation will consist of one or more scenarios. Depending on the requirements of the experiment, a scenario may correspond to one experimental condition or many.
Scenarios are specified using a text description.
Currently, you specify the chain of events in a scenario by writing a text description. This description is stored in one or more text files for each scenario. You can use any editing utility to create these files. The Presentation editor offers some special features that make it an excellent choice for writing scenarios. There are two custom languages that are used to write scenarios, SDL and PCL . Virtually all scenarios will contain some SDL, and some are written entirely in SDL. LANGUAGE Scenario Description Language (SDL): descriptive language used to specify stimuli and their associated properties, and sequences of stimuli and associated properties

95. SDL Integrated Tool Environment
The simple functionality of a PrettyPrinters for sdl ran after approximately one week (author was however sdl and SITE expert) as program stably.
http://www.informatik.hu-berlin.de/SITE/
SITE Table of contents SDL Integrated Tool Environment What is SITE? SITE technology SDL compiler components Other SITE components ... SDL-2000 German Department of Computer Science Research team system analysis (browser or server preferred language is used)
SDL Integrated Tool Environment
What is SITE?
The research group systems analysis of the institute for computer science develops tools for the specification language SDL. Specification and Description Language standardized by the ITU-T (Z.100) The SITE tools supply an open development environment and analysis components for SDL with various extensions, e.g. the combination with ASN.1 or IDL. All components are mostly individually executable programs. This permits the independent development of the components, adjustments for customers, the Intregration of third providers and flexible experiments with the SDL Sprachdefinition themselves. Main line of the development are compiler components for the target languages C++ and Java on the basis of SDL/PR (the textuel representation of a specification). SITE is thereby a supplement of a graphic editors for SDL/GR (with appropriate SDL/PR output). The SITE compiler line is used in different projects for the generation of software for prototypes in addition, under production conditions. One should mention that, SITE also realizes a complete stand-alone X.208 ASN.1 Compiler with Basic Encoding support for C++ and Java. Back to the start
SITE technology
SDL is a very complex language. Therefore we use meta tools for the compiler technology exclusively. The most important representatives are here Flex (lexical analysis), bison (syntactic analysis) and

96. SAM98 Berlin
Detailed Program. Day 1 29.06.1998. 09.00-10.00 Opening Session and Keynote 10.00-11.00 Invited Talk sdl features for describing open distributed
http://www.informatik.hu-berlin.de/~sam98/program.html
SAM98 - Program at a glance
Start Time Day 1 Day 2 Day 3

Manfred Broy
Keynote
Erich Gamma
Invited Talk
Ketil Stoelen
Invited Talk
Anders Olsen
Invited Talk
Ekkart Rudolph
Invited Talk
Coffee Break Coffee Break Coffee Break
B. Geppert
Invited Talk
Gert Kurzbach
P6 U. Hinkel
P1 R. Schroeder
P2 A. Engels
D. Cisowski
P14 W. Kellerer
P8 C. Dietz
P5 R. Gotzhein
P20 F. Meijs
P24 E. Arckens
P15 N.E. Zergainoh
P19 M. Luukkainen
Invited Talk
Andreas Mitschele-Thiel
P20 A. Engels
P10 T. Ihme
P26 D. Hogrefe
P4 U. Glasser
Lunch Break Round Table
Discussion Round Table
Discussion
Invited Talk Gunnar vergaard
P13 Y. Chernov
P23 S. Heymer
P25 M. Kooij
P7 L. Lambert
Invited Talk GMD Fokus
Closing Session
Coffee Break Coffee Break Coffee Break
P9 E. Holz
Joint Session
P16 N. Mansurov
P21 J. Grabowski
Social Event
P18 F. Khendek
Detailed Program
Day 1 - 29.06.1998
09.00-10.00 Opening Session and Keynote
Speaker: Prof. Manfed Broy, Technical University Munich Titel: "On the Meaning of Message Sequence Charts"
10.00-16.00 Session "SDL2000"
Session Chair: Yair Lahav, ECITELE, Israel

97. Linux And The Art Of 3D Game Programming
Linux and the art of 3D game programming ReSDL? (Score0). By Anonymous Reader on 2002.04.18 2159 ( 11271). Another important component in video game
http://entertainment.newsforge.com/comments.pl?sid=22657&op=&threshold=0&comment

98. Washington Secretary Of State -State Library: SDL - 2002 Serving Cultural Divers
Abstract NCRL seeks to enhance its bilingual outreach program. Abstract Centered on Citizenship is a pilot program to provide citizenship
http://www.secstate.wa.gov/library/libraries/projects/diversity/diversAwards2003
Washington Secretary of State:
STATE LIBRARY
Go to Content
HOME
STATE LIBRARY MENU ...
WASHINGTON PRESERVATION INTITIATIVE

2003 Serving Cultural Diversity Awards
serve diverse ethnic populations. These grants emphasize effective needs assessment, building community partnerships, and developing outreach programs. The grants may be used to help libraries initiate new services or enhance existing services.
Grant Number: 03-CD-004 Award: Organization : Burlington Public Library
Abstract : Burlington Public Library will use the funds to begin building their Spanish language collection by purchasing periodical subscriptions, and children's and adult materials.
Grant Number: 03-CD-005 Award: Organization : Fort Vancouver Regional Library
Abstract : In response to findings of a needs assessment conducted over the past year, Everyday English @ Your Library offers English language practice and self-study instruction, children's activities, and cultural and informational programming. The proposed project will help eliminate language barriers and provide information and entertainment relevant to non-English speakers.
Grant Number: 03-CD-008 Award: Organization : North Central Regional Library
Abstract : NCRL seeks to enhance its bilingual outreach program. This grant will support current partnerships with a variety of agencies (including Washington State Migrant Council and Family Services of Grant County) serving Spanish-speaking children and adults by expanding NCRL's Spanish language collection, providing an outreach vehicle and mobile computer catalog, and increasing the supply of programming aids.

99. IDevGames - Community Forum - Sdl + Glut
sample sdl based code wich ALSO uses GLUT. GLUT is based on carbon, but sdl uses cocoa Is there any way to make a GLUT + sdl program work on OS X?
http://www.idevgames.com/forum/archive/index.php/t-3277.html
iDevGames - Community Forum Development Zone Simple DirectMedia Layer PDA View Full Version : Sdl + Glut PowerMacX 2003.04.30, 02:12 PM I have made a couple of GLUT programs, and also some SDL based ones. They all work fine and compile without any errors or warnings. Recently, I downloaded some sample SDL based code wich ALSO uses GLUT. GLUT is based on carbon, but SDL uses cocoa... Is there any way to make a GLUT + SDL program work on OS X?
2003.04.30, 02:13 PM Originally posted by PowerMacX
I have made a couple of GLUT programs, and also some SDL based ones. They all work fine and compile without any errors or warnings. Recently, I downloaded some sample SDL based code wich ALSO uses GLUT. GLUT is based on carbon, but SDL uses cocoa... Is there any way to make a GLUT + SDL program work on OS X?
Why would you want to do that? OneSadCookie 2003.04.30, 02:18 PM GLUT is based on Cocoa on Mac OS X.
But what on earth would a program use both for?! They serve the same purpose! PowerMacX 2003.05.06, 12:01 PM I DON'T want to use both. The reason I'm trying to use both is because I found some nice tutorials with windows based code. It used GLUT, but also some Windows-specific code. Anyway, an SDL port was available for Linux, but I later found out that it used both GLUT and SDL (SDL code was in place of the windows-specific code).

100. Linux Game Tome :: View Topic - Can Someone Help Me Through Making A Mud Game?
When running an sdl program, you should have both the main (graphical) window and a console window that shows whatever you printf() from your program.
http://happypenguin.org/forums/viewtopic.php?t=1967

A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

Page 5     81-100 of 101    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20

free hit counter