TweetFollow Us on Twitter

TCL OOPs Intro
Volume Number:6
Issue Number:9
Column Tag:C Forum

TCL OOPs Introduction

By Mark B. Kauffman, Tucson, AZ

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

An Introduction to Object-Oriented Programming With THINK C

[Mark Kauffman is currently employed at Burr-Brown Research Corp. in Tucson, Arizona, designing and programming test equipment. He has been programming micro-computers for 14 years. He has owned and programmed a Macintosh since its introduction in 1984.]

Introduction

This article is written for C programmers who are interested in learning the object-oriented programming concepts available in THINK C. It includes example code that defines a class of shapes and then draws some shapes in a window on the Macintosh screen. This example is designed to be used with the Starter project that comes with the THINK C 4.0 compiler. By reading this article and trying out the example code, you will gain a clear understanding of the object-oriented concepts of class, inheritance, objects, polymorphism and messages.

Create a New Project and Add the Example Code

Create a working copy of the Starter Folder included in the THINK C compiler as follows: Copy the Starter folder, change the new folder name from “Copy of Starter Folder” to “Object1 Folder”. Open the Object1 Folder and change the word “Starter” to “Object1” in all of the file names that contain the word “Starter”. Now open the Object1 project (Object1.Π) and use the THINK C Find... command in the Search menu to find and replace all occurrences of “Starter” with “Object1” in all of the files used by the project. This procedure allows you to preserve the original Starter Folder for later use in creating new projects.

Use the THINK C file editor to create and type in the three source file listings. Name the files CShapes.c, CShapes.h and DrawMyStuff.c. Add CShapes.c and DrawMyStuff.c to the Object1 project using the Add... command under the Source menu. Open the source code file CObject1Pane.c and find the Draw method...

void CObject1Pane::Draw(Rect *area)

Underneath the line,

 {  /* draw your stuff */

add the following line...

   DrawMyStuff();

When you run the project you should see some circles, rectangles and a line drawn in a window. One of the rectangles should be missing a line across the top and one of the “circles” will be oval shaped. See figure 1.

Figure 1.

OOP Concepts

CShapes.c and CShapes.h are the files that define the shape classes that DrawMyStuff.c uses to create shapes. I’ve followed Symantec’s convention of separating class definitions into two files, a header file (the dot-h file) and a code file (the dot-c file); the header file is always included at the beginning of the code file. CShapes.h, like all dot-h files used to define a class, contains class declarations. A class declaration declares the existence of a class of objects by naming the class (by convention all of the class names begin with a C), by identifying the parent class (In Think C, unlike in some other object-oriented languages, classes undergo asexual reproduction and therefore each class has only one parent.), by stating the method prototypes (i.e. stating the names and parameters of all methods available to the class), and by declaring the instance variables of the class. CShapes.c, like all dot-c files used to define a class, consists of all the methods whose prototypes are given in its dot-h file.

Each method is an algorithm that describes an action. Messages are requests for the action that are sent to an object from the user of the program or from other objects. For example, in response to the message “Draw”, an object of class “CLine” uses the Macintosh QuickDraw routines “MoveTo” and “LineTo” to draw a line at the location given in its instance variable “Location”. Each instance of a class (i.e. each individual object in the class) may respond to the same message differently, depending on the values of its instance variables.

Instance variables are the attributes of objects. Different instances (objects) of the same class can have different values of their instance variables. For example, in the class of objects CPeople, individual objects in the class can have different values for the instance variable “leg strength”. As a result, each object of the class may respond to the same message differently. You may be able to jump (a method) higher than I can because your leg strength (an instance variable) is larger (the value of the instance variable) than mine.

The Sample Program’s Classes

In the example program there are four classes. Class CShape is the root or parent class of the other three classes. CShape is also referred to as an abstract class because there will never be any objects created of class CShape. All of the objects used in the example are of classes that are descendants of CShape. CShapes purpose is to define the methods and instance variables that its descendants will inherit. The inherited methods are: SetShapeLoc, Draw, and Erase. The inherited instance variable is Location.

The descendants of CShape are COval, CRectangle and CLine. These descendants do not need to define the method SetShapeLoc or the instance variable Location because that method and instance variable are inherited from the parent class CShape. One of the advantages of object-oriented programming is this property of new classes inheriting the methods and instance variables of their parent class.

I’ve defined three methods for the CShape class: SetShapeLoc, Draw and Erase. Objects that belong to a class that is a descendant of CShape will all be able to respond to the messages SetShapeLoc, Draw and Erase. Objects in a descendant class of CShape will respond to SetShapeLoc by setting their Location instance variable to the values passed with the SetShapeLoc message. The response inherited by classes that are descendants of CShape to the Draw or Erase message is to do nothing. However, descendants of class CShape can respond to Draw and Erase messages with actions other than the inherited response by overriding the Draw and Erase methods. A descendant class overrides an inherited method by declaring the method prototype in its class declaration, using the same method name, and redefining the method. This ability of objects of different classes to respond differently to the same message is called polymorphism.

Draw!

The sample program’s pane object gets a Draw message whenever it needs to be updated due to some action by the user such as starting the application or resizing the window. In the example the pane’s Draw method has been modified to call DrawMyStuff, a function that draws various lines, rectangles and ovals on the screen. The code in DrawMyStuff could have been in the CObject1Pane.c file as part of its Draw method but by placing the code as a function in a file separate from CObject1Pane.c, compile times are cut tremendously.

DrawMyStuff draws by creating shape objects using the Think C new() function, and then sending SetShapeLoc and Draw messages to the objects. Rectangle and oval objects are created in arrays of their respective class type. Each shape in the arrays is then sent a SetShapeLoc message and a Draw message.

There is only one instance of a line object. The line object is used twice. First, it is sent a SetShapeLoc message with parameters that are the end points of the top of one of the rectangles, and an Erase message so that the top of the rectangle is erased. Second, it is sent another SetShapeLoc message with end points that are above the rectangles and ovals, and a Draw message so that a line is drawn above the rectangles and ovals.

What Next?

This shape library has many possibilities. Obviously, one could add more shapes. There could be an instance variable, “pattern”, so that shapes could be drawn filled with a pattern. It should be possible to animate the shapes using the Dawdle message sent by the application object to the pane by adding a Dawdle method to the pane.

The concepts presented in this article are the basics of object-oriented programming with THINK C. Once you understand these concepts, you will be able to use the THINK Class Library to create complete Macintosh applications with less time and effort than was possible with previous development systems. Have fun!

Listing:  CShape.h

/*
 * Source - CShape.h
 * Author - Mark Bykerk Kauffman
 * Purpose- To define a small class of shapes
 * using THINK C, and to illustrate several
 * key concepts of object oriented programming.
 * All of these classes use the convention of
 * having a C as the first letter their class
 * name.
 */
      
struct CShape : indirect  
{
 Rect Location;
 
 void SetShapeLoc(int A, int B,int C,int D);
 void Draw(void);
 void Erase(void);
};

/*
 * All of the following classes are descendants
 * of CShape.  They inherit all of CShapes 
 * methods and instance variables.
 */ 
    
struct COval : CShape
{
 void Draw(void);
 void Erase(void);
};

struct CRectangle : CShape
{
 void Draw(void);
 void Erase(void);
};

struct CLine : CShape
{
 void Draw(void);
 void Erase(void);
};
Listing:  CShape.c

/*
 * Source - CShape.c
 * Author - Mark Bykerk Kauffman
 * Purpose- This file contains the
 * implementaion of the methods
 * prototyped by shape classes in CShape.h
 */
#include “CShape.h”
#include “Quickdraw.h”

void CShape :: Draw(void)
{
}

void CShape :: Erase(void)
{
}

void CShape :: SetShapeLoc(Left,Top,Right,Bottom)
int Left;
int Top;
int Right;
intBottom;
{
 Rect Location;  
/* LOCAL location variable */
 
 SetRect(&Location,Left,Top,Right,Bottom);
 this->Location = Location;

/* 
 * Set the instance variable Location to
 * the local Location variable value. The 
 * reason for doing this is that
 * Semantec states in the THINK C manual
 * “Your program should not rely on the
 * addresses of instance variables...”.
 * Semantec describes the above technique as
 * “shadowing”.  
 */
}

void COval :: Draw(void)
{
 Rect Location;
 
 Location = this->Location; 
 FrameOval(&Location);    
}

void COval :: Erase(void)
{
 Rect Location;
 
 Location = this->Location;
 EraseOval(&Location);  
}

void CRectangle :: Draw(void)
{
 Rect Location;
 
 Location = this->Location;
 FrameRect(&Location);  
}

void CRectangle :: Erase(void)
{
 Rect Location;
 
 Location = this->Location;
 EraseRect(&Location);  
}

void CLine :: Draw(void)
{
 MoveTo(Location.left,Location.top);
 LineTo(Location.right,Location.bottom);
}

void CLine :: Erase(void)
{
 int    oldPenMode;

 oldPenMode = thePort->pnMode;
 PenMode(notPatCopy);
 MoveTo(Location.left,Location.top);
 LineTo(Location.right,Location.bottom);
 PenMode(oldPenMode);
}
Listing:  DrawMyStuff.c

/*
 * Source - DrawMyStuff.c
 * Author - Mark Bykerk Kauffman
 * Purpose- To demonstrate how to create
 * instances of objects and send them
 * messages using Think C 4.0.  Call this 
 * function from the Draw method of the Pane 
 * object for your application. 
 */
 
#include “oops.h”
#include “CShape.h”

/* 
 * oops.h is included so the compiler knows how 
 * to deal with the object-oriented programming 
 * in this section of code.  CShape.h is
 * included so that all of the shapes defined 
 * in CShape.h are available. 
 */
 
void DrawMyStuff()
{
 int    i;
 CLine  *ALine;
 COval  *AnOval[4];
 CRectangle *ARectangle[4];
 
 for (i=0;i<4;i++) 
 ARectangle[i] = new(CRectangle);
 ARectangle[0]->SetShapeLoc(200,100,300,200);
 ARectangle[1]->SetShapeLoc(210,110,290,190);
 ARectangle[2]->SetShapeLoc(220,120,280,180);
 ARectangle[3]->SetShapeLoc(230,130,270,170);
 for (i=0;i<4;i++) 
 ARectangle[i]->Draw();
 
 ALine = new(CLine); 
 ALine->SetShapeLoc(210,110,290,110);
 ALine->Erase();
 ALine->SetShapeLoc(100,50,300,50);
 ALine->Draw();
 
 for (i=0;i<4;i++) 
 AnOval[i] = new(COval);
 AnOval[0]->SetShapeLoc(100,100,200,200);
 AnOval[1]->SetShapeLoc(110,110,190,190);
 AnOval[2]->SetShapeLoc(120,120,180,185); 
 AnOval[3]->SetShapeLoc(130,130,170,170);
 for (i=0;i<4;i++) 
 AnOval[i]->Draw();
 
 for (i=0;i<4;i++)
 { 
 delete(ARectangle[i]);   
 delete(AnOval[i]);
 }
 delete(ALine);
}

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Dropbox 193.4.5594 - Cloud backup and sy...
Dropbox is a file hosting service that provides cloud storage, file synchronization, personal cloud, and client software. It is a modern workspace that allows you to get to all of your files, manage... Read more
Google Chrome 122.0.6261.57 - Modern and...
Google Chrome is a Web browser by Google, created to be a modern platform for Web pages and applications. It utilizes very fast loading of Web pages and has a V8 engine, which is a custom built... Read more
Skype 8.113.0.210 - Voice-over-internet...
Skype is a telecommunications app that provides HD video calls, instant messaging, calling to any phone number or landline, and Skype for Business for productive cooperation on the projects. This... Read more
Tor Browser 13.0.10 - Anonymize Web brow...
Using Tor Browser you can protect yourself against tracking, surveillance, and censorship. Tor was originally designed, implemented, and deployed as a third-generation onion-routing project of the U.... Read more
Deeper 3.0.4 - Enable hidden features in...
Deeper is a personalization utility for macOS which allows you to enable and disable the hidden functions of the Finder, Dock, QuickTime, Safari, iTunes, login window, Spotlight, and many of Apple's... Read more
OnyX 4.5.5 - Maintenance and optimizatio...
OnyX is a multifunction utility that you can use to verify the startup disk and the structure of its system files, to run miscellaneous maintenance and cleaning tasks, to configure parameters in the... Read more

Latest Forum Discussions

See All

Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »
Live, Playdate, Live! – The TouchArcade...
In this week’s episode of The TouchArcade Show we kick things off by talking about all the games I splurged on during the recent Playdate Catalog one-year anniversary sale, including the new Lucas Pope jam Mars After Midnight. We haven’t played any... | Read more »
TouchArcade Game of the Week: ‘Vroomies’
So here’s a thing: Vroomies from developer Alex Taber aka Unordered Games is the Game of the Week! Except… Vroomies came out an entire month ago. It wasn’t on my radar until this week, which is why I included it in our weekly new games round-up, but... | Read more »
SwitchArcade Round-Up: ‘MLB The Show 24’...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for March 15th, 2024. We’re closing out the week with a bunch of new games, with Sony’s baseball franchise MLB The Show up to bat yet again. There are several other interesting games to... | Read more »
Steam Deck Weekly: WWE 2K24 and Summerho...
Welcome to this week’s edition of the Steam Deck Weekly. The busy season has begun with games we’ve been looking forward to playing including Dragon’s Dogma 2, Horizon Forbidden West Complete Edition, and also console exclusives like Rise of the... | Read more »
Steam Spring Sale 2024 – The 10 Best Ste...
The Steam Spring Sale 2024 began last night, and while it isn’t as big of a deal as say the Steam Winter Sale, you may as well take advantage of it to save money on some games you were planning to buy. I obviously recommend checking out your own... | Read more »
New ‘SaGa Emerald Beyond’ Gameplay Showc...
Last month, Square Enix posted a Let’s Play video featuring SaGa Localization Director Neil Broadley who showcased the worlds, companions, and more from the upcoming and highly-anticipated RPG SaGa Emerald Beyond. | Read more »
Choose Your Side in the Latest ‘Marvel S...
Last month, Marvel Snap (Free) held its very first “imbalance" event in honor of Valentine’s Day. For a limited time, certain well-known couples were given special boosts when conditions were right. It must have gone over well, because we’ve got a... | Read more »
Warframe welcomes the arrival of a new s...
As a Warframe player one of the best things about it launching on iOS, despite it being arguably the best way to play the game if you have a controller, is that I can now be paid to talk about it. To whit, we are gearing up to receive the first... | Read more »
Apple Arcade Weekly Round-Up: Updates an...
Following the new releases earlier in the month and April 2024’s games being revealed by Apple, this week has seen some notable game updates and events go live for Apple Arcade. What The Golf? has an April Fool’s Day celebration event going live “... | Read more »

Price Scanner via MacPrices.net

Apple Education is offering $100 discounts on...
If you’re a student, teacher, or staff member at any educational institution, you can use your .edu email address when ordering at Apple Education to take $100 off the price of a new M3 MacBook Air.... Read more
Apple Watch Ultra 2 with Blood Oxygen feature...
Best Buy is offering Apple Watch Ultra 2 models for $50 off MSRP on their online store this week. Sale prices available for online orders only, in-store prices may vary. Order online, and choose... Read more
New promo at Sams Club: Apple HomePods for $2...
Sams Club has Apple HomePods on sale for $259 through March 31, 2024. Their price is $40 off Apple’s MSRP, and both Space Gray and White colors are available. Sale price is for online orders only, in... Read more
Get Apple’s 2nd generation Apple Pencil for $...
Apple’s Pencil (2nd generation) works with the 12″ iPad Pro (3rd, 4th, 5th, and 6th generation), 11″ iPad Pro (1st, 2nd, 3rd, and 4th generation), iPad Air (4th and 5th generation), and iPad mini (... Read more
10th generation Apple iPads on sale for $100...
Best Buy has Apple’s 10th-generation WiFi iPads back on sale for $100 off MSRP on their online store, starting at only $349. With the discount, Best Buy’s prices are the lowest currently available... Read more
iPad Airs on sale again starting at $449 on B...
Best Buy has 10.9″ M1 WiFi iPad Airs on record-low sale prices again for $150 off Apple’s MSRP, starting at $449. Sale prices for online orders only, in-store price may vary. Order online, and choose... Read more
Best Buy is blowing out clearance 13-inch M1...
Best Buy is blowing out clearance Apple 13″ M1 MacBook Airs this weekend for only $649.99, or $350 off Apple’s original MSRP. Sale prices for online orders only, in-store prices may vary. Order... Read more
Low price alert! You can now get a 13-inch M1...
Walmart has, for the first time, begun offering new Apple MacBooks for sale on their online store, albeit clearance previous-generation models. They now have the 13″ M1 MacBook Air (8GB RAM, 256GB... Read more
Best Apple MacBook deal this weekend: Get the...
Apple has 13″ M2 MacBook Airs available for only $849 today in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty is included,... Read more
New 15-inch M3 MacBook Air (Midnight) on sale...
Amazon has the new 15″ M3 MacBook Air (8GB RAM/256GB SSD/Midnight) in stock and on sale today for $1249.99 including free shipping. Their price is $50 off MSRP, and it’s the lowest price currently... Read more

Jobs Board

Early Preschool Teacher - Glenda Drive/ *Appl...
Early Preschool Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
Senior Software Engineer - *Apple* Fundamen...
…center of Microsoft's efforts to empower our users to do more. The Apple Fundamentals team focused on defining and improving the end-to-end developer experience in Read more
Relationship Banker *Apple* Valley Main - W...
…Alcohol Policy to learn more. **Company:** WELLS FARGO BANK **Req Number:** R-350696 **Updated:** Mon Mar 11 00:00:00 UTC 2024 **Location:** APPLE VALLEY,California Read more
Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill WellSpan Medical Group, York, PA | Nursing | Nursing Support | FTE: 1 | Regular | Tracking Code: 200555 Apply Now Read more
Early Preschool Teacher - Glenda Drive/ *Appl...
Early Preschool Teacher - Glenda Drive/ Apple ValleyTeacher Share by Email Share on LinkedIn Share on Twitter Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.