Example #1
0
 // Use this for initialization
 void Start()
 {
     IceOSLog    = GetComponent <IceOSLogout>();
     Software    = GameObject.Find("Software");
     System      = GameObject.Find("System");
     sc          = System.GetComponent <SoundControl>();
     appman      = System.GetComponent <AppMan>();
     tv          = System.GetComponent <TaskViewer>();
     RemoveTimer = 0.25f;
 }
    // Use this for initialization
    void Start()
    {
        SysSoftware = GameObject.Find("System");
        Hardware    = GameObject.Find("Hardware");


        Crash = GameObject.Find("Crash");
        SCM   = Crash.GetComponent <SysCrashMan>();

        cpu = Hardware.GetComponent <CPU>();
        ram = Hardware.GetComponent <RAM>();
        tv  = SysSoftware.GetComponent <TaskViewer>();
    }
Example #3
0
    // Use this for initialization
    void Start()
    {
        Crash    = GameObject.Find("Crash");
        Desktops = GameObject.Find("Desktops");
        Software = GameObject.Find("Software");
        prompt   = GameObject.Find("Prompts");
        System   = GameObject.Find("System");

        noti = prompt.GetComponent <NotfiPrompt>();
        SCM  = Crash.GetComponent <SysCrashMan> ();
        tv   = System.GetComponent <TaskViewer>();

        appman = System.GetComponent <AppMan>();
    }
    public void showTasks()
    {
        var clones = GameObject.FindGameObjectsWithTag("Clone");

        foreach (var clone in clones)
        {
            Destroy(clone);
        }
        for (int i = 0; i < tasks.Count; ++i)
        {
            GameObject newTaskViewer = Instantiate(baseTaskViewer);
            newTaskViewer.tag = "Clone";
            newTaskViewer.transform.SetParent(GameObject.FindGameObjectWithTag("Planner").transform, false);
            TaskViewer newTaskText = newTaskViewer.GetComponent <TaskViewer>();
            newTaskText.setTask(tasks[i]);
        }
    }
Example #5
0
    // Use this for initialization
    void Start()
    {
        System       = GameObject.Find("System");
        Applications = GameObject.Find("Applications");
        Hacking      = GameObject.Find("Hacking");
        Other        = GameObject.Find("Other");
        Computer     = GameObject.Find("Computer");
        Prompts      = GameObject.Find("Prompts");
        WindowHandel = GameObject.Find("WindowHandel");
        QA           = GameObject.Find("QA");

        winman = WindowHandel.GetComponent <WindowManager>();

        history      = Computer.GetComponent <SiteList>();
        websecviewer = Computer.GetComponent <WebSecViewer>();

        qa = QA.GetComponent <BugReport>();

        //DESKTOP ENVIROMENT
        customtheme = Computer.GetComponent <CustomTheme>();
        startmenu   = System.GetComponent <AppMenu>();
        rezprompt   = Prompts.GetComponent <RezPrompt>();
        desktop     = System.GetComponent <Desktop>();
        vc          = System.GetComponent <VolumeController>();

        //HACKING SOFTWARE
        pro             = Hacking.GetComponent <Progtive>();
        trace           = Hacking.GetComponent <Tracer>();
        dirsearch       = Hacking.GetComponent <DirSearch>();
        dicCrk          = Hacking.GetComponent <DicCrk>();
        passwordcracker = Hacking.GetComponent <PasswordCracker>();
        dirsearch       = Hacking.GetComponent <DirSearch>();

        //STOCK SYSTEMS
//		port = Applications.GetComponent<Portfolio>();
//		shareprompt = Prompts.GetComponent<SharePrompt>();

        //OTHER PROMPTS
        purchaseprompt = Prompts.GetComponent <PurchasePrompt>();

        //SYSTEM PROMPTS
        errorprompt    = Prompts.GetComponent <ErrorProm>();
        shutdownprompt = Prompts.GetComponent <ShutdownProm>();
        installprompt  = Prompts.GetComponent <InstallPrompt>();

        //SYSTEM SOFTWARE
        sysclock      = System.GetComponent <Clock>();
        cli           = System.GetComponent <CLI>();
        cliv2         = System.GetComponent <CLIV2>();
        os            = System.GetComponent <OS>();
        systempanel   = System.GetComponent <SystemPanel>();
        tasks         = System.GetComponent <TaskViewer>();
        com           = System.GetComponent <Computer>();
        diskman       = System.GetComponent <DiskMan>();
        vv            = System.GetComponent <VersionViewer>();
        fp            = System.GetComponent <FileExplorer>();
        SRM           = System.GetComponent <SystemResourceManager>();
        boot          = System.GetComponent <Boot>();
        deviceman     = System.GetComponent <DeviceManager>();
        executor      = System.GetComponent <Executor>();
        gatewayviewer = System.GetComponent <GatewayViewer>();

        //LEGAL APPLICATIONS
        email          = Applications.GetComponent <EmailClient>();
        caluclator     = Applications.GetComponent <Calculator>();
        notepad        = Applications.GetComponent <Notepad>();
        notepadv2      = Applications.GetComponent <Notepadv2>();
        accountlogs    = Applications.GetComponent <AccLog>();
        mp             = Applications.GetComponent <MusicPlayer>();
        treeview       = Applications.GetComponent <TreeView>();
        nv             = Applications.GetComponent <NotificationViewer>();
        pv             = Applications.GetComponent <PlanViewer>();
        calendar       = Applications.GetComponent <Calendar>();
        calendarv2     = Applications.GetComponent <CalendarV2>();
        eventview      = Applications.GetComponent <EventViewer>();
        exchangeviewer = Applications.GetComponent <ExchangeViewer>();

        //INTERNET BROWSERS
        internetbrowser = Applications.GetComponent <InternetBrowser>();
        edgebrowser     = Applications.GetComponent <NetViewer>();
        firefoxbrowser  = Applications.GetComponent <Firefox>();

        //APPLICATIONS
        systemMap  = Applications.GetComponent <SystemMap>();
        textreader = Applications.GetComponent <TextReader>();

        //BROWSER STUFF
        history = Computer.GetComponent <SiteList>();

        //OTHER CONNECTION DEVICE
        rv  = Applications.GetComponent <RemoteView>();
        vmd = Other.GetComponent <VMDesigner>();
    }
Example #6
0
 // Use this for initialization
 void Start()
 {
     tasks  = GetComponent <TaskViewer>();
     os     = GetComponent <OS>();
     appman = GetComponent <AppMan>();
 }
Example #7
0
    void ProgramSetup()
    {
        AppSoftware     = GameObject.Find("Applications");
        QA              = GameObject.Find("QA");
        HackingSoftware = GameObject.Find("Hacking");
        SysSoftware     = GameObject.Find("System");
        Computer        = GameObject.Find("Computer");
        Other           = GameObject.Find("Other");
        Missions        = GameObject.Find("Missions");

        qa = QA.GetComponent <BugReport>();

        //mb = GetComponent<MissionBrow>();
        sl  = Computer.GetComponent <SiteList>();
        wsv = Computer.GetComponent <WebSecViewer>();

        //Hacking Software
        pro     = HackingSoftware.GetComponent <Progtive>();
        trace   = HackingSoftware.GetComponent <Tracer>();
        ds      = HackingSoftware.GetComponent <DirSearch>();
        dc      = HackingSoftware.GetComponent <DicCrk>();
        passcrk = HackingSoftware.GetComponent <PasswordCracker>();

        //System Sofware
        dsk   = SysSoftware.GetComponent <Desktop>();
        com   = SysSoftware.GetComponent <Computer>();
        ss    = SysSoftware.GetComponent <ScreenSaver>();
        sp    = SysSoftware.GetComponent <SystemPanel>();
        am    = SysSoftware.GetComponent <AppMenu>();
        tasks = SysSoftware.GetComponent <TaskViewer>();
        clk   = SysSoftware.GetComponent <Clock>();
        cmd   = SysSoftware.GetComponent <CLI>();
        cmd2  = SysSoftware.GetComponent <CLIV2>();
        os    = SysSoftware.GetComponent <OS>();
        dm    = SysSoftware.GetComponent <DiskMan>();
        mouse = SysSoftware.GetComponent <Mouse>();
        fp    = SysSoftware.GetComponent <FileExplorer>();
        dem   = SysSoftware.GetComponent <DeviceManager>();
        vc    = SysSoftware.GetComponent <VolumeController>();

        //Application Softwate
        //        port = AppSoftware.GetComponent<Portfolio>();
        tr     = AppSoftware.GetComponent <TextReader>();
        sm     = AppSoftware.GetComponent <SystemMap>();
        al     = AppSoftware.GetComponent <AccLog>();
        note   = AppSoftware.GetComponent <Notepad>();
        notev2 = AppSoftware.GetComponent <Notepadv2>();
        cc     = AppSoftware.GetComponent <EmailClient>();
        tv     = AppSoftware.GetComponent <TreeView>();
        nv     = AppSoftware.GetComponent <NotificationViewer>();
        pv     = AppSoftware.GetComponent <PlanViewer>();
        //calendar = AppSoftware.GetComponent<Calendar>();
        calendarv2   = AppSoftware.GetComponent <CalendarV2>();
        eventview    = AppSoftware.GetComponent <EventViewer>();
        exchangeview = AppSoftware.GetComponent <ExchangeViewer>();

        // Application Browsers
        ib  = AppSoftware.GetComponent <InternetBrowser>();
        eib = AppSoftware.GetComponent <NetViewer>();
        fib = AppSoftware.GetComponent <Firefox>();
        rv  = AppSoftware.GetComponent <RemoteView>();
        cal = AppSoftware.GetComponent <Calculator>();
        mp  = AppSoftware.GetComponent <MusicPlayer>();



        // Prompts
        ip  = Prompts.GetComponent <InstallPrompt>();
        pp  = Prompts.GetComponent <PurchasePrompt>();
        ep  = Prompts.GetComponent <ErrorProm>();
        sdp = Prompts.GetComponent <ShutdownProm>();
        rp  = Prompts.GetComponent <RezPrompt>();
//		shareprompt = Prompts.GetComponent<SharePrompt>();
        notiprompt = Prompts.GetComponent <NotfiPrompt>();

        //OTHER
        vmd = Other.GetComponent <VMDesigner>();

        // Computer
        ct = Computer.GetComponent <CustomTheme>();

        //Missions
        misgen = Missions.GetComponent <MissionGen>();
    }
Example #8
0
    // Use this for initialization
    void Start()
    {
        SysSoftware  = GameObject.Find("System");
        Hardware     = GameObject.Find("Hardware");
        Applications = GameObject.Find("Applications");

        cpu    = Hardware.GetComponent <CPU>();
        ram    = Hardware.GetComponent <RAM>();
        com    = SysSoftware.GetComponent <Computer>();
        def    = SysSoftware.GetComponent <Defalt>();
        sp     = SysSoftware.GetComponent <SystemPanel>();
        tv     = SysSoftware.GetComponent <TaskViewer>();
        ib     = Applications.GetComponent <InternetBrowser>();
        appman = SysSoftware.GetComponent <AppMan>();
        sc     = GetComponent <SoundControl>();
        boot   = GetComponent <Boot>();

        note = Applications.GetComponent <Notepad>();



        if (boot.Terminal == true)
        {
            CPUUsage      += 2;
            MemoryUsage   += 500;
            GraphicsUsage += 5;
            Index          = 2;
            SetOSUsage     = false;
            StartUpdateOS  = false;
            SetUsage();
            SelectedIcon = 1;
            GameControl.control.BootTime = 0.4f;
            appman.SelectedApp           = "Command Line V2";
        }
        else
        {
            StartUpdateOS = true;
        }

//		if (Customize.cust.native_width != 0)
//		{
//			native_width = Customize.cust.native_width;
//			native_height = Customize.cust.native_height;
//		}

        if (Application.isEditor == true)
        {
            windowRect = new Rect(0, 0, Screen.width, Screen.height);
        }
        else
        {
            windowRect = new Rect(0, 0, Customize.cust.RezX, Customize.cust.RezY);
        }

        IconWidth = 10 * 12;
        xmodpic   = 4;
        ymodpic   = 8;
        xmod      = 13;

        MaxIconsPerRow = 10;

        ContextMenuID           = 98;
        ContextwindowRect.width = 100;
        //ContextwindowRect.height = 21*6+7;
    }