Esempio n. 1
0
        // Returns a path to the image associated with term is term is a valid word,
        // otherwise returns empty string ("")
        public string FetchImagePath(string term)
        {
            string basePath = "../../../word_images/";

            if (Animals.Contains(term))
            {
                return(basePath + "animals/" + term + ".jpg");
            }
            else if (Body_parts.Contains(term))
            {
                return(basePath + "body_parts/" + term + ".jpg");
            }
            else if (Fruit_vegetables.Contains(term))
            {
                return(basePath + "fruit_vegetables/" + term + ".jpg");
            }
            else if (Artificial.Contains(term))
            {
                return(basePath + "artificial/" + term + ".jpg");
            }
            else if (Natural_world.Contains(term))
            {
                return(basePath + "nature/" + term + ".jpg");
            }
            else if (Occupations.Contains(term))
            {
                return(basePath + "occupations/" + term + ".jpg");
            }
            return("");
        }
Esempio n. 2
0
 public static bool removeArtificial(Artificial artificial, int num=1)
 {
     bool temp = artificials.remove(artificial, num);
     if (temp) {
         current -= (artificial.spaceTaken * num);
     }
     return temp;
 }
Esempio n. 3
0
 public static bool addArtificial(Artificial artificial, int num=1)
 {
     if (current + (artificial.spaceTaken * num) <= capacity) {
         artificials.add (artificial, num);
         current += (artificial.spaceTaken * num);;
         return true;
     }
     else {
         return false;
     }
 }
        public IEnumerable <Personaje> getPersonaje()
        {
            Humanos      agregacion1 = new Humanos("agregar", " nuevaliga", "villano", "armamento", "armadura");
            Aliens       agregacion2 = new Aliens("agregar", " nuevaliga", "villano", "especie");
            Artificial   agregacion3 = new Artificial("agregar", " nuevaliga", "villano", "create");
            SuperHumanos agregacion4 = new SuperHumanos("agregar", " nuevaliga", "villano", "combinacion");

            personas.Add(agregacion1);
            personas.Add(agregacion2);
            personas.Add(agregacion3);
            personas.Add(agregacion4);

            return(personas);
        }
Esempio n. 5
0
    /// <summary>
    /// uses raycasting to shoot at a cube
    /// </summary>
    public static void editCube(Artificial a)
    {
        RaycastHit hit;
        MeshCollider first;
        Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
        if (Physics.Raycast(ray,out hit,100)){

            first= hit.collider.GetComponent<MeshCollider>();
            first.convex=false;
            if (Physics.Raycast(ray,out hit,100))
            {

                first.convex=true;
                hit.collider.GetComponent<MeshCollider>().convex=true;

                hit.collider.GetComponent<chunk>().ReplaceBlockCursor(hit,a);

            }
        }
    }
Esempio n. 6
0
    void OnGUI()
    {
        cur = Inventory.current;
        GUI.skin.textField.wordWrap = true;

        if (openMenu) {
            openInventory = false;
            gameObject.GetComponent<governor>().currentState = state.gui;
            GUI.Box (new Rect ((Screen.width / 2) - Screen.width / 8, Screen.height / 12, Screen.width / 4, Screen.height / 3), "Menu");
            if (GUI.Button (new Rect ((Screen.width / 2) - (Screen.width / 20), (Screen.height / 12) * 2, Screen.width / 10, Screen.height / 15), "Main Menu")) {
                Application.LoadLevel("MainMenu");
            }
            if (GUI.Button (new Rect ((Screen.width / 2) - (Screen.width / 20), (Screen.height / 12) * 3, Screen.width / 10, Screen.height / 15), "Save")) {
                UniverseSaveObject.SaveUniverse ();
            }
            if (GUI.Button (new Rect ((Screen.width / 2) - (Screen.width / 20), (Screen.height / 12) * 4, Screen.width / 10, Screen.height / 15), "Quit")) {
                Application.Quit();
            }
        }
        else {
            gameObject.GetComponent<governor>().currentState = state.shoot;
            openInventory = GUI.Toggle (new Rect (Screen.width - 80, Screen.height - 20, 80, 20), openInventory, "Inventory");
        }

        if (openInventory) {
            //GUI.DrawTexture (new Rect (0, 0, Screen.width, Screen.height), background);

            //Capacity bar
            GUI.Box (new Rect (10, 18, barLength, 20), "");
            GUI.Box (new Rect (10, 18, maxBarLength, 20), cur + "/" + max);

            //Labels
            GUI.Label (new Rect (10, 0, 80, 20), "Capacity", label);
            GUI.Label (new Rect (10, (middleY / 4) - paddingSmallY, 80, 20), "Inventory", label);
            GUI.Label (new Rect (middleX + paddingSmallX, 0, 80, 20), "Crafting", label);
            GUI.Label (new Rect (middleX, middleY + Screen.height / 24, 80, 20), "Required: ", label);

            //GUI.Label (new Rect ((paddingLargeX * 3) + Screen.width / 16, 50, 80, 40), "Total Mass", label);
            //GUI.Label (new Rect ((paddingLargeX * 3) + Screen.width / 16, 70, 80, 40), "" + Inventory.totalMass, label);

            // Begin the InventoryView
            scrollViewVector = GUI.BeginScrollView (new Rect (10, middleY / 4, Screen.width / 5, Screen.height - Screen.height / 6), scrollViewVector, new Rect (0, 0, Screen.width / 6, Screen.height - Screen.height / 5));
            string[] inventoryStrings = new string[Inventory.artificials.count];
            Node<Artificial>[] inventoryItems = new Node<Artificial>[Inventory.artificials.count];
            Inventory.artificials.Nodes().CopyTo(inventoryItems,0);
            int numTemp = 0;

            foreach (Node<Artificial> art in Inventory.artificials.Nodes()) {
                inventoryStrings [numTemp] = art.key.type + ": " + art.value.ToString ();
                numTemp++;
            }
            inventoryInt = GUI.SelectionGrid (new Rect (0, 0, Screen.width / 5, Inventory.artificials.count * 25), inventoryInt, inventoryStrings, 1);
            if(inventoryInt >= Inventory.artificials.count) {
                inventoryInt = 0;
            }
            if(Inventory.artificials.count > 0){
                currentSelection = inventoryItems[inventoryInt].key;
                currentSelectionAmount = inventoryItems[inventoryInt].value;
            }
            else {
                currentSelection = null;
                currentSelectionAmount = 0;
            }
            // End the InventoryView
            GUI.EndScrollView ();

            if(Inventory.artificials.count > 0){
                display = "Type: " + currentSelection.type + @"
        " + "Amount: " + currentSelectionAmount + @"
        " + "Description: " + currentSelection.description;
            } else {
                display = "";
            }
                    GUI.TextField(new Rect((Screen.width/4) - paddingSmallX, middleY / 4, Screen.width / 5, Screen.height / 4),display);

            // Begin the ScrollView
            scrollViewVector2 = GUI.BeginScrollView (new Rect (middleX + paddingSmallX, 20, Screen.width / 5, Screen.height / 2), scrollViewVector2, new Rect (0, 0, Screen.width / 6, 19));

            toolbarInt = GUI.SelectionGrid (new Rect (0, 0, Screen.width / 5, toolbarStrings.Length * 25), toolbarInt, toolbarStrings, 1);

            // End the ScrollView
            GUI.EndScrollView ();

            //Drawing crafting recipe based on what is selected in the scrollbar
            switch (toolbarInt) {
            case 0:
                artificialTemp = Artificial.furnace ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 1:
                artificialTemp = Artificial.radar ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 2:
                artificialTemp = Artificial.core ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 3:
                artificialTemp = Artificial.warpdrive ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            /*
            case 4:
                artificialTemp = Artificial.phasegun ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 5:
                artificialTemp = Artificial.missilelauncher ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 6:
                artificialTemp = Artificial.spacecannon ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 7:
                artificialTemp = Artificial.turret ();
                i = 0;
                j = paddingLargeY;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            */
            /*case 3:
                artificialTemp = Artificial.gun ();
                i = 0;
                j = 50;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 4:
                artificialTemp = Artificial.pickaxe ();
                i = 0;
                j = 50;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;
            case 5:
                artificialTemp = Artificial.sword ();
                i = 0;
                j = 50;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    GUI.Label (new Rect (middleX + i, middleY + j, 80, 40), de.Key.type, label);
                    GUI.Label (new Rect (middleX + i, middleY + j + 20, 80, 40), de.Value.ToString (), label);
                    i += paddingLargeX;
                    if (i > paddingLargeX * 3) {
                        i = 0;
                        j += 50;
                    }
                }
                break;*/
            default:
                break;
            }
            //Drawing the info box for the Crafting
            display2 = "Type: " + artificialTemp.type + @"
        " + "Description: " + artificialTemp.description;
            GUI.TextField(new Rect((Screen.width/4) * 3, 20, Screen.width / 5, Screen.height / 4),display2);

            //Crafting button
            if (GUI.Button (new Rect (((Screen.width / 4) * 2), middleY - 20, (Screen.width / 2) - 10, 30), "Craft")) {
                bool canCraft = true;
                foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                    canCraft = Inventory.artificials.check(de.Key, de.Value);
                    if (!canCraft) {
                        break;
                    }
                }
                if (canCraft) {
                    foreach (KeyValuePair<Artificial, int> de in artificialTemp.recipe) {
                        Inventory.removeArtificial (de.Key, de.Value);
                    }
                    Inventory.addArtificial (artificialTemp, 1);
                }
            }

            //Tester buttons
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4), 100, 20), "Test")) {
                Inventory.addArtificial (Resource.iron (), 200);
                Inventory.addArtificial (Resource.copper (), 200);
                Inventory.addArtificial (Resource.beryllium (), 200);
            }
            /*
            if (GUI.Button (new Rect ((Screen.width / 2) + 120, ((Screen.height / 6) * 4), 100, 20), "Remove Iron")) {
                Inventory.removeArtificial (Resource.iron (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4) + 20, 100, 20), "Add Beryllium")) {
                Inventory.addArtificial (Resource.beryllium (), 1);
            }
            if (GUI.Button (new Rect ((Screen.width / 2) + 120, ((Screen.height / 6) * 4) + 20, 100, 20), "Remove Beryllium")) {
                Inventory.removeArtificial (Resource.beryllium (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4) + 40, 100, 20), "Add Copper")) {
                Inventory.addArtificial (Resource.copper (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2 + 120, ((Screen.height / 6) * 4) + 40, 100, 20), "Remove Copper")) {
                Inventory.removeArtificial (Resource.copper (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4) + 60, 100, 20), "Add Platinum")) {
                Inventory.addArtificial (Resource.platinum (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2 + 120, ((Screen.height / 6) * 4) + 60, 100, 20), "Remove Platinum")) {
                Inventory.removeArtificial (Resource.platinum (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4) + 80, 100, 20), "Add Titanium")) {
                Inventory.addArtificial (Resource.titanium (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2 + 120, ((Screen.height / 6) * 4) + 80, 100, 20), "Remove Titanium")) {
                Inventory.removeArtificial (Resource.titanium (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4) + 100, 100, 20), "Add Uranium")) {
                Inventory.addArtificial (Resource.uranium (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2 + 120, ((Screen.height / 6) * 4) + 100, 100, 20), "Remove Uranium")) {
                Inventory.removeArtificial (Resource.uranium (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4) + 120, 100, 20), "Add Plutonium")) {
                Inventory.addArtificial (Resource.plutonium (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2 + 120, ((Screen.height / 6) * 4) + 120, 100, 20), "Remove Plutonium")) {
                Inventory.removeArtificial (Resource.plutonium (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2, ((Screen.height / 6) * 4) + 140, 100, 20), "Add Silver")) {
                Inventory.addArtificial (Resource.silver (), 1);
            }
            if (GUI.Button (new Rect (Screen.width / 2 + 120, ((Screen.height / 6) * 4) + 140, 100, 20), "Remove Silver")) {
                Inventory.removeArtificial (Resource.silver (), 1);
            }
            */
        }//End of OpenInventory
    }
Esempio n. 7
0
    /// <summary>
    /// method called when this gameobject is hit by ray
    /// </summary>
    /// <param name="hit">raycast hit with position info.</param>
    /// <param name="block">blocktype to be added
    /// .</param>
    public void ReplaceBlockCursor(RaycastHit hit,Artificial a)
    {
        Vector3 fdNormal;
        if(a.symbol==0)//moves hit based on normal value from polygon
            fdNormal = new Vector3 (-0.5f*hit.normal.x, -0.5f*hit.normal.y, -0.5f*hit.normal.z);
        else
            fdNormal = new Vector3 (0.5f*hit.normal.x, 0.5f*hit.normal.y, 0.5f*hit.normal.z);
        //send in vector3 adjusted to localspace and from above normal value

        int[] pos= RoundAndRmBlock(gameObject.transform.InverseTransformPoint( hit.point+fdNormal),a.symbol);
        if(a.symbol==0x80)
            addModel(pos, a.model);
    }