Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
1
Question by topotamadre_1 · Jan 01, 2017 at 05:34 PM · c#gameobjectprogrammingprogramming-basics

How to make method that gets multiple types?

Hi, I have some game objects called: Furnace, Sawmil, etc...

I also have a class call Item, with some data about the game blocks (it's a minecraft clone).

 public class Item {
 
     public string itemName;
     public ushort itemID;
     public string itemDesc;
     public Texture2D itemIcon;
     public Material itemMaterial;
     public string itemType;
     public GameObject itemPrefab;
     public List<string> itemFlags;
     public Interaction[] itemInteractions;
 
     public Item(string name, ushort id, string desc, Material material, Texture2D icon = null, 
                 string type = "None",GameObject prefab = null, List<string> flags = null,
                 Interaction[] interactions = null) {
         itemName = name;
         itemID = id;
         itemDesc = desc;
         itemMaterial = material;
         itemIcon = icon;
         itemType = type;
         itemPrefab = prefab;
         itemFlags = flags ?? new List<string>();
         itemInteractions = interactions;
     }
 
 }

the problem is with the interactions, this holds the information of the block interactions with the machine game objects of the game, to return ingots or plancks or whatever from raw ores.

 public class Interaction {
   
     public Furnace machine; //This is the machine that process the block
     public int[][] output;  // A list of tuples [(itemID, count), (item2ID, count), ...] the items that return the machine
 
     public Interaction(Furnace iMachine, int[][] iOutput) {
         machine= iMachine;
         output = iOutput;
     }

As you can see, it only accepts instances of Furnace.

I want to make it accept instances of Furnace, Sawmill, MagicWorshop, etc. So I can make multiple machines process that block and return different outputs.

I thought of making a parent class like "Machine" and then inherit Furnace, Sawmill and so from it, but that objects already inherit from MonoBehaviour and I dont know how to make them inherit from both classes at the same time (MonoBehaviour and Machine). The next thing I though was using "dynamic" but looks like needs version 4.0 and I'm working on 3.5.

Any idea? Thanks.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by IgorAherne · Jan 01, 2017 at 05:39 PM

You indeed need to inherit them from Machine, which in turn inherits MonoBehaviour

Check with the following:

 Machine myMachine; //came as argument in function
 
 Furnace machineAsFurnace = myMachine as Furnace;
 if(machineAsFurnace != null){
      //machine as furnace is a furnace! success.
      //do something with your furnace:
      machineAsFurnace.Smelt(myIngots);
     return;
 }
 
 
 Sawmill machineAsSawmill = myMachine as Machine;
 
 if(machineAsSawmill != null){
     //do something with your sawmill
     return;
 }

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image topotamadre_1 · Jan 01, 2017 at 10:59 PM 0
Share

That did it, thank you.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

7 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Dropdown resolutions menu 0 Answers

SetActive is not working 2 Answers

transform.SetParent(null); Not Working 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges