Click here to Skip to main content
15,878,852 members
Articles / Desktop Programming / WTL
Article

WTL SeaBattle game

Rate me:
Please Sign up or sign in to vote.
4.00/5 (7 votes)
12 Aug 20041 min read 64.5K   1.9K   19   7
SeaBattle game written using WTL

Image 1

Introduction

WTL is relatively unknown library for most of C++ developers. Even in its current state (with no official Microsoft support as far as I know) it could compete with MFC as tool for development GUI applications a especially small standalone applications. It is template library and if you design your application right, then it would depend on minimal or none other dll. So I decided to write WTL application just for sake of experience to see how hard to do it. It turns out to easy enough for a programmer with experience in MFC and WinAPI. Most of the classes match names of MFC classes serving the same purpose. And I did not have to wonder if I got right version of MFC dlls on any other machine where I copied my application. I wanted to do something which would not be too boring, so it was a logical choice to write something funny and useless: a game. WTLSeaBattle is simple version of widely known game “Sea Battle”, it sole purpose is to give an example of dialog based WTL application.

Building Environment

This application was developed using VC++ 6.0 SP6 and WTL70, and tested under Windows XP.

Application Description

WTLSeaBattle is dialog-based application written using WTL. Its main class is CMainDlg (files maindlg.*) which deals with managing controls in dialog, “battle field” classes and communications between objects inside application. Classes CMyShips (MyShips.cpp) and CEnemyShips (EnemyShips.cpp) implement player’s and computer’s game fields respectively. CMyShips and CEnemyShips derived from common base class CDisplayAreaWnd which contains common functionality. CMyShips allows user to place ships, CEnemyShips places computer’s ships and handles calculation of next “shot” during game.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalplz teach mee Pin
Pandeydwr6-Jul-07 2:15
Pandeydwr6-Jul-07 2:15 
Generalmediocre Pin
Joseph .OM12-Jun-07 0:28
Joseph .OM12-Jun-07 0:28 
`
GeneralAbout an error of the source Game WTL Sea Battle Pin
jedimastervn22-Oct-06 7:47
jedimastervn22-Oct-06 7:47 
GeneralRe: About an error of the source Game WTL Sea Battle Pin
Gregory Elbert23-Oct-06 10:37
Gregory Elbert23-Oct-06 10:37 
GeneralRe: About an error of the source Game WTL Sea Battle Pin
jedimastervn25-Oct-06 7:48
jedimastervn25-Oct-06 7:48 
GeneralRe: About an error of the source Game WTL Sea Battle Pin
Gregory Elbert1-Nov-06 8:28
Gregory Elbert1-Nov-06 8:28 
GeneralRe: About an error of the source Game WTL Sea Battle Pin
Pandeydwr6-Jul-07 2:14
Pandeydwr6-Jul-07 2:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.