- 0
Simple VB football game stuck
-
Recently Browsing 0 members
- No registered users viewing this page.
-
Similar Content
-
Microsoft veteran wants to replace every single line of C/C++ code with Rust and AI 1 2
By Usama Jawad96,
- 35 replies
- 0 views
-
VBScript on Windows is on the way out, here is what to do with your legacy VBA projects
By Usama Jawad96,
- 8 replies
- 0 views
-
This mindblowing project lets you run Windows XP on the web
By Usama Jawad96,
- microsoft
- windows xp
- (and 4 more)
- 13 replies
- 0 views
-
Download HTML, CSS, & JavaScript All-in-One For Dummies ($39.99 Value, now FREE)
By News Staff,
- ebook offer
- sponsored
- (and 5 more)
- 0 replies
- 0 views
-
WordPress-Theme Twenty Twenty Four-customizing: how to do that - a Gutenberg special question...
By thedhubs,
- 2 answers
- 3204 views
-
Question
pinacallada1
I am making a simple 5- a side text based football game for uni, problem is i suck at programming and have really messed it up so now im stuck as to what to do. The task description is only really to think of a simple 5 a-side game with goalkeeper (who can save), defenders (who can tackle) and attackers (who can shoot). All players have a Name, a position and can pass, dribble and run. This includes a hasball feature which will check if a particular player has the ball. So far i have a basic code i made to work off for my classes, i can think of what i need to do exactly but i just don't know how to express it in code.
So far the only thing im stuck on is building classes for the interfaces below, its my first time programming this semester and im still getting used to everything. What i have to work off is follows:
interface IFootballPlayer
{
string Name { get; set; }
bool HasBall { get; set; }
int XPos { get; set; }
int YPos { get; set; }
void Pass(FootballPlayer receiver);
void Dribble(int x, int y);
void Run(int x, int y);
string ToString();
}
interface IGoalKeeper
{
int SaveSkill { get; set; }
void Save(Attacker attacker);
}
interface IDefender
{
int TackleSkill { get; set; }
void Tackle(Attacker attacker);
}
interface IAttacker
{
int ShootSkill { get; set; }
void Shoot(GoalKeeper goalKeeper);
}
If i can get this sorted ill be able to scrape a pass hopefully
I would be grateful for any advice, C# still looks like a alien language to me
Link to comment
https://www.neowin.net/forum/topic/1356524-simple-vb-football-game-stuck/Share on other sites
0 answers to this question
Recommended Posts