Thread: resident evil

  1. #1
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688

    resident evil

    if anybody has played the resident evil games, you may be able to help...

    I know the advancement in how the game was programmed is beyond my abilities at this present time, but, where the zombies are placed and programmed, is that done by somthing called "EVENT PROGRAMMING?" it is somthing I am intrested in getting to know how to do, and another thing, do I have the title of the function correct, this type of programing applys to almost evrey game, or is it AI programming?

    Any suggestions greatly recived!

  2. #2
    Registered User mrafcho001's Avatar
    Join Date
    Jan 2005
    Posts
    483
    Learn C++...

  3. #3
    Programmer Frantic-'s Avatar
    Join Date
    Dec 2004
    Posts
    114
    you need:

    1.) lots of money for software and books
    2.)lack of social life
    3.)items 1 and 2

  4. #4
    Registered User
    Join Date
    Apr 2005
    Location
    Costa Rica
    Posts
    3
    I do think it is done using event programming, something basically as when you press a button of the keyboard in your computer and it displays a letter. When in the game you open a door you trigger an event and it may act as:
    Code:
    When (Door31.isOpen==True)
    {
    ZombieAlfa = new Zombie;
    ZombieAlfa.at(Door31+SomeStepsAway);
    }
    it is just an idea of how it might work. I know event programming in Java and it is something like that, it may not change that much for games ;-)

  5. #5
    Kiss the monkey. CodeMonkey's Avatar
    Join Date
    Sep 2001
    Posts
    937
    Yeah, within the regular checks done on every visible object within each frame (or every n frames), each object also has its event conditions checked.
    "If you tell the truth, you don't have to remember anything"
    -Mark Twain

  6. #6
    Deprecated Dae's Avatar
    Join Date
    Oct 2004
    Location
    Canada
    Posts
    1,034
    You could do "event programming" in many languages.. and I'd say most games are programmed in C++.. so as the first response said "learn C++". However you cant just learn one aspect of C++ called "event programming".. though you could specialize in it (even though that parts just a lot of imputting data, not really as some complex as other categories).

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Anyone a Resident Evil fan?
    By SlyMaelstrom in forum A Brief History of Cprogramming.com
    Replies: 4
    Last Post: 12-02-2005, 08:21 PM
  2. Resident Evil: The Evil Begins-Coder Needed
    By ^Tomala^ in forum Projects and Job Recruitment
    Replies: 8
    Last Post: 01-04-2005, 05:37 PM
  3. The Evil, Evil Game
    By Lurker in forum A Brief History of Cprogramming.com
    Replies: 35
    Last Post: 06-01-2004, 11:08 AM
  4. evil evil empirical authority....
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 9
    Last Post: 03-25-2003, 04:33 PM
  5. Resident Evil???
    By Unregistered in forum A Brief History of Cprogramming.com
    Replies: 2
    Last Post: 08-18-2002, 12:32 PM