Thread: c++ OOP project ideas

  1. #1
    Registered User
    Join Date
    Oct 2001
    Posts
    4

    Unhappy c++ OOP project ideas

    Hi ppl,

    I needed some ideas for this semester-end c++ OOP project that we have to submit. Please give me some ideas for a good project...while
    suggesting ,please keep the foll. in mind:

    * its a 1st level project (we have been doing c++ for about 2 months).. for 3 people..
    *the project should somehow be suitable for object oriented programming ..
    *please do not suggest database,paint editor,text editor or tetris
    clone (i'm tired of these suggestions) :-))

    thanx in advance..

  2. #2
    Unregistered
    Guest
    object oriented game of battleship.

    There was a project posted not too long ago that was to set up a system for modeling traffic lights at an intersetion. It could be extended slightly to model traffic flow through a section of two (or more) sets of traffic lights. The point of the project is opitimize the number of cars passing through an intersection by adjusting the duration of the red and green lights.

    design a program to randomly build and solve mazes.

  3. #3
    Registered User
    Join Date
    Aug 2001
    Posts
    223
    how about create a string class....

    using the existing functions in string.h

    strcmp, strcpy...

    Believe me building a string class can range from a small to as-large-as-you-want-to-make-it project......


    a string class could implement things like...

    overloading the operators =, ==, >, <, >=, <=, [], +=
    it could also perform functions such as

    Delete a substring
    Find a substring
    MakeUpper
    MakeLower
    MakeUpperInitial
    MakeLowerInitial
    ConvertTo_c_Style
    RightTrim
    LeftTrim
    GetLength

    and many others.... but those are the fundamental operations and functions....
    zMan

  4. #4
    Registered User
    Join Date
    Feb 2002
    Posts
    33

    random maze

    that unreged persons idea about a program that generates random mazes and then solves them is a great idea, it would be fun with the AI you'd have to make.

  5. #5
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    What about a simulation of some creatures walking around in a world? For example: The creatures of type A eat creatures of type B and creatures of type B. The number of creatures of type B grows much faster than the creatures of type A. You can add some random nature disasters (earthquake, tornado) etc.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. 2D RPG Online Game Project. 30% Complete. To be released and marketed.
    By drallstars in forum Projects and Job Recruitment
    Replies: 2
    Last Post: 10-28-2006, 12:48 AM
  2. Project Ideas
    By Sentral in forum A Brief History of Cprogramming.com
    Replies: 24
    Last Post: 09-26-2006, 02:07 PM
  3. Another question on classes
    By hpy_gilmore8 in forum C++ Programming
    Replies: 26
    Last Post: 05-24-2003, 09:11 AM
  4. Ideas for my c++ game for semester project
    By Leeman_s in forum Game Programming
    Replies: 9
    Last Post: 12-30-2002, 01:57 AM