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 /
  • Help Room /
avatar image
0
Question by Meikkhaell · May 13, 2020 at 12:06 AM · objectsclassesclass objectassignment

I'm very confused about an Object Oriented Programming Project

Basically, my assignment is to use two classes (Main and Post) to make a basic replica of Reddit in Unity. I'm supposed to take inputs (post title, date, poster's username, and post's details), and save those as a new post. Then, when viewing that post, I'm supposed to be able to Upvote and Downvote it. I'm not quite done yet (it doesn't yet print the new post), I'm stuck because I feel like I'm doing everything wrong. I could program this just fine if I didn't need to use multiple classes. But as it stands, I'm stuck. Should each class be in a different C# script? Or can I have them both in the same? Which class should my Upvote/Downvote methods be in? Am I overthinking this substantially? Thanks.

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using TMPro;
 
 public class MainScript : MonoBehaviour
 {
     public string userTitle;
     public string userPosterName;
     public string userCreationDate;
     public string userPost;
 
     public TMP_InputField titleInputField;
     public TMP_InputField nameInputField;
     public TMP_InputField dateInputField;
     public TMP_InputField postInputField;
     public TextMeshProUGUI voteText;
 
     public GameObject postCreationCanvas;
     Post post;
 
     public void CreatePost()        //this method is run when the "Post" button is clicked
     {
         userTitle = titleInputField.text;
         userPosterName = nameInputField.text;
         userCreationDate = dateInputField.text;
         userPost = postInputField.text;
 
         post = new Post(userTitle, userPosterName, userCreationDate, userPost);
 
         postCreationCanvas.SetActive(false);
     } 
 
     public void Upvote()        //this method is run by pressing the upvote button
     {
         post.AddVotes();
         voteText.text = "Votes: " + post.votes.ToString();
     }
 
     public void Downvote()      //this method is run by pressing the downvote button
     {
         post.LoseVotes();
         voteText.text = "Votes: " + post.votes.ToString();
     }
 }
 
 public class Post
 {
     public Post(string _title, string _posterName, string _creationDate, string _postDetails)
     {
         this.title = _title;
         this.posterName = _posterName;
         this.creationDate = _creationDate;
         this.postDetails = _postDetails;
     }
 
     public string title { get; set; }
     public string posterName { get; set; }
     public string creationDate { get; set; }
     public string postDetails { get; set; }
 
     public int votes = 0;
 
     public void AddVotes()
     {
         votes++;
     }
 
     public void LoseVotes()
     {
         votes--;
     }
 }


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

0 Replies

· Add your reply
  • Sort: 

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

201 People are following this question.

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

Related Questions

Trouble with creating objects 1 Answer

How can I change a function from another script? 1 Answer

I can not use classes 1 Answer

Custom class, Null Reference Exception 4 Answers

Help with object oriented 0 Answers


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