Friday, February 21, 2014

Catch Me If You Can - A Game

 This is a project submitted by Dheeraj Kumar and Jeevrajani Vaibhav of VI semester of 2012 pass-out batch. There is a problem with the project. It is a C++ project. Some warnings apart, if we click on the moving box at the center it should increase the points which it does not. The advantage with projects not working is that you get an opportunity to make it work. In this project after screen is maximized the rectangle inside which the white box appears should be at the center.

Here is a snapshot:


 You can download the code from Here.

22 comments:

  1. can u send abstract and implementation of catch me if you can
    to this mail:bnsuraj10@gmail.com

    ReplyDelete
  2. can u plz send de report of this game plzzz?

    ReplyDelete
  3. can u plz send de report of this game plzzz?

    ReplyDelete
    Replies
    1. The game was not working... have you made it work?.. that is too much of a work for me in this busy schedule. Here is the report... https://drive.google.com/file/d/0B4Usyvy-VMLkZXZ2MWpJRnF2WXM/view?usp=sharing

      Delete
    2. Plz send the abstract and introduction of this game

      Delete
  4. yeah i made it work .its working...thank u so much for the report..

    ReplyDelete
  5. the game is working.but how to reduce the delay .can u plz help me in reducing the delay in the movement of object once game starts.??plzz

    ReplyDelete
  6. There are two ways... 1) in moveRight() function reduce the increment to the x value of the box ie v
    have this code instead of the existing one...
    if(level1==1)
    v=2; // v is increment which was 5 earlier
    else if(level2==1)
    v=5;
    else if(level3==1)
    v=8;
    2) Another method though not recommended is to insert a delay loop which does nothing. In same moveRIght function
    have this=>
    for(int t=0;t<1000;t++)
    for(int h=0;h<1000;h++)
    for(int y=0;y<100;y++)
    {}
    before call to glutPostRedisplay()

    ReplyDelete
  7. yeah thank u..i implemented first method...delay has reduced..

    ReplyDelete
  8. the object is square i want to change it into triangle or tetrahedron can any1 pls send the code

    ReplyDelete
  9. the score is not displaying..can u plz help me out?

    ReplyDelete
  10. Can u please send me d abstract details...cchintu000@gmail.com

    ReplyDelete
  11. can u send me the correct code

    ReplyDelete
  12. can u send me the correct code

    ReplyDelete
  13. please send me the correct code
    i am the clicking on the object,but the game is not working,object wont stop..and score is always 00..please send the correct code on piyushvalli19@gmail.com

    ReplyDelete
  14. Can u please send the abstract for this game at -
    vishalsingh2994@gmail.com
    Thanking you.

    ReplyDelete
  15. the coordinates are not matching my screen.plzz help

    ReplyDelete
  16. i have issue with aspect ratio

    ReplyDelete