免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 898 | 回复: 0
打印 上一主题 下一主题

请问:能把下列的控制流程简单化吗? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-05-11 14:40 |只看该作者 |倒序浏览
I'm writing a program that simulates an elevator with two floors in c++. The part of flow is puzzling for me. Can I make it simple and clear? Please help me!
我用C++写一个模拟两层电梯的程式。是根据OOP的思想来编写,结果很不幸在主线程的控制部分,却把自己搞得糊里糊图。我觉得写得很啰索,但又不知怎样改进。请各位高手帮帮忙--简单化,或模板化都行。因为这种写法,简直让我无法调试。
Thank you everbody先!

BTW:I have written nine classes(Person,Adjuster,Clock,Button,EDoor,Elevator,Light,Floor,  and OfficeBuilding)

#include "OfficeBuilding.h"
#include "iostream.h"
#include "iomanip.h"
#include "string.h"
#include "time.h"
#include "stdlib.h"
#include "stdio.h"

void welcomeString()
{
        cout << "\t\t************************************\n";
        cout << "\t\tWelcome to simulator program world!!\n";
        cout << "\t\t************************************\n\n";

}

void printPerson()
{
        char a = 1 , b = 45, c = 19;
        for ( int j = 1; j < 80; j++ )
        {
                cout << a;
        }
        cout << endl;

        cout << " " << a << '\n' << b << b << b << '\n' << " " << c << endl;

        for ( int i = 1; i < 80 ; i++ )
        {
                cout << a ;
        }
        cout << endl;
}

int main()
{
        welcomeString();
        OfficeBuilding office;
       
        office.clock.showSystemTime();                //display current time
       
        int nFlag1, nFlag2;
        printPerson();
                               
        //genearte a floor
        office.floor1 = getFloor();
                       
        //generate the number of floor
        office.floor1->;setNumberOfPersons(office.floor1->;adjust.getNumberOfPeople());
                               
        //generate the number of people
        office.floor1->;setNumOfFloor(office.floor1->;adjust.getNumberOfFloor());
       
        //get the number of people of that floor
        nFlag1 = office.floor1->;getNumOfPersons();
                               
        //set the name of that floor
        office.floor1->;setFloorName();               
                               
        char * tmp = office.floor1->;getFloorName();
                               
        office.clock.sleep(1);   //interval one second
                               
        //generate another floor
        office.floor2 = getFloor();
                               
        //generate the people of that floor
        office.floor2->;setNumberOfPersons(office.floor2->;adjust.getNumberOfPeople());
                               
        //generate the number of that floor
        office.floor2->;setNumOfFloor(office.floor2->;adjust.getNumberOfFloor());
                               
        //get the number of people of that floor
        nFlag2 = office.floor2->;getNumOfPersons();
                               
        //set the name of that floor
        office.floor2->;setFloorName();

        while ( strcmp(tmp,office.floor2->;getFloorName()) == 0 )
        {
                office.floor2->;setNumOfFloor(office.floor2->;adjust.getNumberOfFloor());
                office.floor2->;setFloorName();
        }
                                                       
                               
        //Working time is between morning nine and seventeen afternoon
        if (office.clock.getHour() >;=9 && office.clock.getHour() <= 17 )
        {
               
                office.beginWork();

               
                //if working then start to simulate
                while ( office.isWorking() )
                {
                        char e;
                        cout << "Are you want to exit?(y/n)";
                        cin >;>; e;
                       
                        if( e == 'y' )
                                break;
                        else
                        {
                                               
                                if ( nFlag1 == 0 && office.floor1->;getFloorNumber() == 1 )
                                {
                                        do
                                        {
                                                cout << office.floor2->;getFloorName() << " -- there are "
                                                        << office.floor2->;getNumOfPersons() << " persons" << endl;
                                               
                                                office.floor2->;person = new Person;
                                               
                                                //person presses the down button, because he is on the second floor
                                                office.floor2->;door.downButton.isPressed(office.floor2->;person->;pressButton(4));               
                                                //1 = fisrt floor, 2 = second floor, 3 = up , 4 = down
                                                // 5 = open, 6 = shut;}
                                               
                                                office.elevator.floorButton2.isPressed(2);   //floorbutton2 of elevator is light
                                                office.elevator.isBussy();                //elevator opens the door
                                                office.elevator.shutButton.isPressed(6);    //person shuts the door
                                                cout << "erson in elevator from " << office.floor2->;getFloorName() << endl;
                                               
                                                cout << "lease waiting... Elevator is being moving up." << endl;
                                                office.clock.sleep(5);
                                                cout << "Elevator has arrived on " << office.floor1->;getFloorName() << endl;

                                                delete office.floor2->;person;
                                                office.floor2->;decrementNum();        //subtract one person
                                               
                                                cout << "There are " << office.floor2->;getNumOfPersons()
                                                        << " on " << office.floor2->;getFloorName() << " now."<< endl;

                                                //next person must be waiting
                                                office.floor2->;person->;isWaiting();                //waiting the elevator coming up again
                                                cout << "eople are waiting on " << office.floor2->;getFloorName() << endl;
                       
                                        }while ( nFlag1 == 0 && office.floor2->;getNumOfPersons() >; 0 );                //if there is no person in floor first
                                }
                                else if ( nFlag2 == 0 && office.floor2->;getFloorNumber() == 2 )
                                {
                                        cout << office.floor1->;getFloorName() << " --there are "
                                                << office.floor1->;getNumOfPersons() << " persons " << endl;

                                        office.floor1->;person = new Person;

                                         //People press up button of the door, because you are on the first floor
                                        office.floor1->;door.upButton.isPressed(office.floor1->;person->;pressButton(3));
                                        //1 = fisrt floor, 2 = second floor, 3 = up, 4 = down
                                        // 5 = open, 6 = shut;}

                                        office.elevator.floorButton1.isPressed(1);   //floorbutton1 of elevator is light


                                        do
                                        {
                                                if ( office.elevator.floorButton1.getButtonState() == 1 ) //elevator is on first floor
                                                {
                                                        //person presses the up button, because he is on the first floor
                                                        office.floor1->;door.upButton.isPressed(office.floor2->;person->;pressButton(3));               
                                                //1 = fisrt floor, 2 = second floor, 3 = up , 4 = down
                                                // 5 = open, 6 = shut;}
                                                        office.elevator.isBussy();                                        //elevator opens the door
                                                        office.elevator.shutButton.isPressed(6);    //person shuts the door
                                                        cout << "erson is in elevator!" << endl;
                                                        office.clock.sleep(5);
                                                        office.elevator.isArrial();                                        //after five minutes the elevator arrived destination
                                                        cout << "elevator arrived the destination " << office.floor2->;getFloorName() << endl;

                                                        office.floor1->;decrementNum();                //subtract one person from floor1
                                                        delete office.floor1->;person;

                                                        //next person must be waiting
                                                        office.floor2->;person->;isWaiting();                //waiting the elevator coming up again
                                                        cout << "eople are waiting on " << office.floor1->;getFloorName() << endl;
                                                        office.clock.sleep(5);
                                                }
                                                else
                                                {
                                                        cout << "lease waiting... Elevator is coming down." << endl;
                                                        office.clock.sleep(5);
                                                        cout << "Elevator is arrived on " << office.floor1->;getFloorName()
                                                                << endl;

                                                        office.floor1->;door.upButton.isPressed(office.floor2->;person->;pressButton(3));               
                                                //1 = fisrt floor, 2 = second floor, 3 = up , 4 = down
                                                // 5 = open, 6 = shut;}
                                                        office.elevator.floorButton1.isPressed(1);   //floorbutton1 of elevator is light
                                                        office.elevator.isBussy();                                        //elevator opens the door
                                                        office.elevator.shutButton.isPressed(6);    //person shuts the door
                                                        cout << "erson is in elevator!" << endl;

                                                        office.clock.sleep(5);
                                                        office.elevator.isArrial();                                        //after five minutes the elevator arrived destination
                                                        cout << "elevator arrived the destination " << office.floor2->;getFloorName() << endl;

                                                        office.floor1->;decrementNum();                //subtract one person from floor1
                                                        delete office.floor1->;person;
                                                }
                                        }while ( nFlag2 ==0 && office.floor1->;getNumOfPersons() >; 0);
                                }
                                else
                                {
                                        //if floor1 is first floor
/*                                        if ( strcpy( office.floor1->;getFloorName(),"FLOOR1" == 0 )
                                        {
                                                cout << office.floor1->;getFloorName() << " there are "
                                                        << nFlag1 << " persons " << endl;
                                               
                                                office.floor1->;person = new Person;
                                                office.floor1->;person->;pressButton(3); //because you are on the second floor
                                                //1 = fisrt floor, 2 = second floor, 3 = up , 4 = down
                                                // 5 = open, 6 = shut;}
                                                cout << "lease waiting... Elevator is being moving up." << endl;
                                                office.clock.sleep(5);
                                                cout << "Elevator has arrived.\n";
                                                delete office.floor1->;person;
                                                cout << "erson in elevator!\n";
                                                office.floor1->;decrementNum();        //subtract one person
                                        }
                                       
                                        //if floor2 is second floor
                                        if ( strcpy( office.floor1->;getFloorName(),"FLOOR2" )
                                        {
                                                cout << office.floor2->;getFloorName() << " there are "
                                                        << nFlag2 << " persons" << endl;
                                               
                                                office.floor2->;person = new Person;
                                                office.floor2->;person->;pressButton(4); //because you are on the second floor
                                                //1 = fisrt floor, 2 = second floor, 3 = up , 4 = down
                                                // 5 = open, 6 = shut;}
                                                cout << "lease waiting... Elevator is being moving up." << endl;
                                                office.clock.sleep(5);
                                                cout << "Elevator has arrived.\n";
                                                delete office.floor2->;person;
                                                cout << "Person in elevator!\n";
                                                office.floor2->;decrementNum();        //subtract one person
                                        }*/
                                }
                        }
                }
        }       
        else
        {
                cout << "Sorry! Not in working time!\n";
        }
        //delete the space of floor1 and floor2
        if ( office.floor1 != NULL || office.floor2 != NULL)
        {
                delete office.floor1;
                delete office.floor2;
        }
        return 0;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP