Example #1
0
 public Classes(Write home, Form1 frmHome, Configuration system, Gamepad gamepad)
 {
     Write = home;
     FrmMain = frmHome;
     System = system;
     Gamepad = gamepad;
 }
Example #2
0
        private void Declare()
        {
            CronusMax       = new Output.CronusPlus.Write(this);
            Gamepad         = new Output.Gamepad(this);
            Gimx            = new Output.Gimx.Gimx(this);
            GimxRemote      = new Output.Gimx.GimxRemote(this);
            Keyboard        = new Input.KeyboardHook(this);
            Keymap          = new Keymap(this);
            Menu            = new Menu.ShowMenu(this);
            Mouse           = new Input.Mouse.Hook(this);
            Remap           = new Remapping();
            System          = new Configuration(this);
            VideoResolution = new VideoResolution(this);

            //Fix these later
            KeyboardInterface = new Input.KeyboardInterface(Home);
            KeyboardInterface.getSystemHandle(System);
            KeyboardInterface.getRemapHangle(Remap);
            KeyboardInterface.getKeymapHandle(Keymap);


            TitanOne = new Output.TitanOne.Write(Home, System, Gamepad);
            External = new ExternalScript(Home);


            VideoCapture = new VideoCapture.VideoCapture(Home, System);

            System.GetClassHandles(VideoCapture, CronusMax, TitanOne, VideoResolution);
        }
Example #3
0
        private void Declare()
        {
            ControllerMax = new Output.ControllerMax(this);
            Gamepad = new Output.Gamepad(this);
            Gimx = new Gimx(this);
            Keyboard = new Input.KeyboardHook(this);
            Keymap = new Keymap(this);
            Menu = new Menu.ShowMenu(this);
            Mouse = new Input.Mouse.Hook(this);
            Remap = new Remapping();
            System = new Configuration(this);
            VideoResolution = new VideoResolution(this);

            //Fix these later
            KeyboardInterface = new Input.KeyboardInterface(Home);
            KeyboardInterface.getSystemHandle(System);
            KeyboardInterface.getRemapHangle(Remap);
            KeyboardInterface.getKeymapHandle(Keymap);

            TitanOne = new Output.TitanOne.Write(Home, System, Gamepad);
            External = new ExternalScript(Home);

            VideoCapture = new VideoCapture.VideoCapture(Home, System);

            System.GetClassHandles(VideoCapture, ControllerMax, TitanOne, VideoResolution);
        }