• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 17:44
CEST 23:44
KST 06:44
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Voting2[ASL20] Ro4 Preview: Descent2Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
5.0.15 Patch Balance Hotfix (2025-10-8)61Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition295.0.15 Balance Patch Notes (Live version)119$2,500 WardiTV TL Map Contest Tournament 154
StarCraft 2
General
PartinG joins SteamerZone, returns to SC2 competition TL.net Map Contest #21: Voting 5.0.15 Patch Balance Hotfix (2025-10-8) TL.net Map Contest #21 - Finalists Geoff 'iNcontroL' Robinson has passed away
Tourneys
SC2's Safe House 2 - October 18 & 19 Sparkling Tuna Cup - Weekly Open Tournament RSL Offline Finals Dates + Ticket Sales! SC4ALL $6,000 Open LAN in Philadelphia $2,500 WardiTV TL Map Contest Tournament 15
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
Whose hotkey signature is this? [ASL20] Ro4 Preview: Descent Any rep analyzer that shows resources situation? BW General Discussion BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL20] Semifinal A [Megathread] Daily Proleagues [ASL20] Ro8 Day 4 Small VOD Thread 2.0
Strategy
Current Meta BW - ajfirecracker Strategy & Training Siegecraft - a new perspective TvZ Theorycraft - Improving on State of the Art
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Dawn of War IV Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread The Games Industry And ATVI Stop the Construction YouTube Thread Things Aren’t Peaceful in Palestine
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Inbreeding: Why Do We Do It…
Peanutsc
From Tilt to Ragequit:The Ps…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1321 users

The Big Programming Thread - Page 197

Forum Index > General Forum
Post a Reply
Prev 1 195 196 197 198 199 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Craton
Profile Blog Joined December 2009
United States17254 Posts
Last Edited: 2012-11-17 01:18:22
November 17 2012 01:16 GMT
#3921
Build - Compile "changed" or not compiled files
Clean - Remove existing compiled files
Rebuild - Clean + Build
twitch.tv/cratonz
kaykaykay
Profile Joined July 2012
Singapore637 Posts
Last Edited: 2012-11-17 01:47:16
November 17 2012 01:45 GMT
#3922
On November 16 2012 19:59 Frigo wrote:
Show nested quote +
On November 15 2012 23:55 kaykaykay wrote:
Is there anybody decent with Object oriented programing eclipse java here? :D

How can we help?


Hi Frigo,
How do you use a class diagram to help you write codes?
I've no idea where to start.

[image loading]
Starve the ego, feed the soul.
Craton
Profile Blog Joined December 2009
United States17254 Posts
Last Edited: 2012-11-17 03:12:26
November 17 2012 03:11 GMT
#3923
I'm assuming homework assignment?

Just make classes for each block with the relevant properties and methods. It also has the flow of which classes should be calling which.

One class would be HappyFamilyGame which would have an array[5] of class Player and a method start() which takes nothing and returns nothing (i.e. void).
twitch.tv/cratonz
tec27
Profile Blog Joined June 2004
United States3701 Posts
November 17 2012 05:35 GMT
#3924
Oh god who designed such an awful set of classes. For future reference (I'm going to assume that you were given this by your instructor):
  • Never make classes called 'Helper'; these will always end up being generic grab-bags of functions. If your class doesn't keep any state, it probably shouldn't be a class (I know, Java boxes you in here because everything has to be in a class, but in more expressive languages this applies).
  • If you have a class like Deck, don't make methods that end with the class name (like createDeck, displayDeck, etc.). You already know you're dealing with a Deck from the object, no need to repeat this all over the place. It also makes polymorphism in inheriting classes more confusing.
  • Don't use arrays where lists are better suited and easier to use (namely 'hand' in Player, as well as the array of players, etc.). Regardless of the rules of the game, its very unlikely that one player will hold all the cards and everyone else will hold none, so you're allocating a lot of space that will sit empty the vast majority of the time. Lists certainly have more memory overhead than arrays, but they keep track of their length for you and you don't have to worry about adding too many things to them (hell, allocate ArrayLists with an initial size of 48 and you'll have almost identical space usage/performance but without all of the crappy length checks you'll have to make with arrays!)
Can you jam with the console cowboys in cyberspace?
FFGenerations
Profile Blog Joined April 2011
7088 Posts
Last Edited: 2012-11-17 07:51:06
November 17 2012 07:03 GMT
#3925
1. where should the stuff in Helper be then? just stuff in the Main? (or HappyFGame?)
2. cool tip
3. also cool, we have touched on arrays but not mentioned lists
i have C# assignment to do next (2 weeks i think) , look forward to organising myself better
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
kaykaykay
Profile Joined July 2012
Singapore637 Posts
Last Edited: 2012-11-17 07:24:11
November 17 2012 07:23 GMT
#3926
Oh right. Forgot to add this.

Required Functionalities:
User registration of up to five players (A to E).
Player's name must be three to eight characters.
Shuffle the 48 cards randomly.Distribute the cards equally to each of the registered players. A difference of one card between players is acceptable.
Display all players with all the cards that have been given to them.

Coding Restrictions:
You must use simple (1-D) arrays .
You are not allowed to use ArrayLists or LinkedLists.
You are not allowed to implement any form of GUI. (E.g. Swing, AWT, etc.)
Starve the ego, feed the soul.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2012-11-17 08:01:45
November 17 2012 07:52 GMT
#3927
On November 17 2012 16:23 kaykaykay wrote:
Oh right. Forgot to add this.

Required Functionalities:
User registration of up to five players (A to E).
Player's name must be three to eight characters.
Shuffle the 48 cards randomly.Distribute the cards equally to each of the registered players. A difference of one card between players is acceptable.
Display all players with all the cards that have been given to them.

Coding Restrictions:
You must use simple (1-D) arrays .
You are not allowed to use ArrayLists or LinkedLists.
You are not allowed to implement any form of GUI. (E.g. Swing, AWT, etc.)


First off, we are not here to do your assignment for you. We can help in debugging if you've given up on life after 8 hours on one bug, or if you've been stumped on a specific implementation and have exhausted your coffee supply, or if you have any secondary, more abstract questions about your work. This is not a homework thread, but most of the time, we'll give you the benefit of the doubt when you need some help, that you've actually been staring at this problem and trying to code for hours and making no progress. But at the moment, you really make it seem like you just want us to complete it for you.


If this is your first programming assignment ever and you're not planning to be in a Computer Science relevant industry, then I feel for you, but it's very unlikely that the teacher just threw you into here without teaching you incrementally all the required steps.

You are given the entire class diagram, which involves several classes, what functions should exist in each class, what those functions should do, and how they interact with each other. Your only job is to decide on an appropriate data structure to use for each class implementation, implement each function, and then link them all together in a main loop.

Your class implementation is already restricted for you; you can't use ArrayLists or LinkedLists. Ask yourself, what's left?

You function implementations begin at the simplest level, in this case, the lowest class in the class diagram, the card.

Implement all the functions of the card, then test that they do what they're required to do. Once you're done that level, move up another step to a higher level, where each step up uses the new classes that you've implemented. Unless you have a lot of experience, you cannot implement a class without implementing the classes that it depends on. How can you dealCards() if you haven't created the structure for a Deck and Card yet?

The class diagram gives you a visual representation of how to implement the solution to a problem, which is a Happy Family Game in this case. They help you by simplifying the "what to implement and their relationships" portion and let you focus on "how to implement," once you've verified that the diagram is correct.


All of your restrictions should be fairly obvious with how they fit into the class diagrams.

There is no one like you in the universe.
kaykaykay
Profile Joined July 2012
Singapore637 Posts
Last Edited: 2012-11-17 08:31:34
November 17 2012 08:27 GMT
#3928
On November 17 2012 16:52 Blisse wrote:
Show nested quote +
On November 17 2012 16:23 kaykaykay wrote:
Oh right. Forgot to add this.

Required Functionalities:
User registration of up to five players (A to E).
Player's name must be three to eight characters.
Shuffle the 48 cards randomly.Distribute the cards equally to each of the registered players. A difference of one card between players is acceptable.
Display all players with all the cards that have been given to them.

Coding Restrictions:
You must use simple (1-D) arrays .
You are not allowed to use ArrayLists or LinkedLists.
You are not allowed to implement any form of GUI. (E.g. Swing, AWT, etc.)


First off, we are not here to do your assignment for you. We can help in debugging if you've given up on life after 8 hours on one bug, or if you've been stumped on a specific implementation and have exhausted your coffee supply, or if you have any secondary, more abstract questions about your work. This is not a homework thread, but most of the time, we'll give you the benefit of the doubt when you need some help, that you've actually been staring at this problem and trying to code for hours and making no progress. But at the moment, you really make it seem like you just want us to complete it for you.


If this is your first programming assignment ever and you're not planning to be in a Computer Science relevant industry, then I feel for you, but it's very unlikely that the teacher just threw you into here without teaching you incrementally all the required steps.

You are given the entire class diagram, which involves several classes, what functions should exist in each class, what those functions should do, and how they interact with each other. Your only job is to decide on an appropriate data structure to use for each class implementation, implement each function, and then link them all together in a main loop.

Your class implementation is already restricted for you; you can't use ArrayLists or LinkedLists. Ask yourself, what's left?

You function implementations begin at the simplest level, in this case, the lowest class in the class diagram, the card.

Implement all the functions of the card, then test that they do what they're required to do. Once you're done that level, move up another step to a higher level, where each step up uses the new classes that you've implemented. Unless you have a lot of experience, you cannot implement a class without implementing the classes that it depends on. How can you dealCards() if you haven't created the structure for a Deck and Card yet?

The class diagram gives you a visual representation of how to implement the solution to a problem, which is a Happy Family Game in this case. They help you by simplifying the "what to implement and their relationships" portion and let you focus on "how to implement," once you've verified that the diagram is correct.


All of your restrictions should be fairly obvious with how they fit into the class diagrams.



Firstly yes I did post for help because I thought you guys could give me a headups on where to start. But I never told nor expected anyone to do it for me. If you noticed, I asked if anyone was good at OOP, before asking for help.
Nevertheless I'm sorry if I made it seem that way to you.

Secondly, I posted the coding restrictions because tec27 mentioned ArrayLists and it was only right to inform him that I couldn't use that. Not for anyone to do my assignment for me.

Thirdly, yes it's my first assignment.

Lastly, thanks for telling me that I should start coding at the Card class because it is the lowest class. It was all I really needed.

Edit: When you say appropriate data structure to use for each class implementation, you mean either Int, Str, Double etc.. Yeah?
Starve the ego, feed the soul.
tec27
Profile Blog Joined June 2004
United States3701 Posts
November 17 2012 08:57 GMT
#3929
On November 17 2012 16:03 FFGenerations wrote:
1. where should the stuff in Helper be then? just stuff in the Main? (or HappyFGame?)
2. cool tip
3. also cool, we have touched on arrays but not mentioned lists
i have C# assignment to do next (2 weeks i think) , look forward to organising myself better

For the Helper stuff, you should generally find a better abstraction for it. That class in particular looks to be for converting strings to other types, so it might just be a matter of naming (it might be better called StringConverter or something along those lines). If its meant to read multiple things out of the same string (IE: like the Scanner class in Java) then you'd want to have some sort of state kept internally, as well as a different name.

Basically you want to name things such that other people (and yourself after you write it) can understand very clearly what functionality belongs in a class and what doesn't. A name like 'Helper' can apply to just about anything, so you end up with a ton of unrelated stuff in it eventually.
Can you jam with the console cowboys in cyberspace?
supereddie
Profile Joined March 2011
Netherlands151 Posts
Last Edited: 2012-11-17 09:04:09
November 17 2012 09:02 GMT
#3930
Just a tip: for homework stuff, do exactly what you are given, including classnames and datatypes. Do not change any of this, as some professors will just mark it as failed because you didn't stick to the task. In your situation you are explicitly given a class model including restrictions. Do not try to be clever and come up with a dfferent structure, names etc unless your professor gives you the OK for it.

Ofcourse, you can create the clever stuff if you want, just don't turn it in. Unless you want to get into a hefty discussion...
"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2012-11-17 09:09:24
November 17 2012 09:06 GMT
#3931
On November 17 2012 17:27 kaykaykay wrote:
Show nested quote +
On November 17 2012 16:52 Blisse wrote:
On November 17 2012 16:23 kaykaykay wrote:
Oh right. Forgot to add this.

Required Functionalities:
User registration of up to five players (A to E).
Player's name must be three to eight characters.
Shuffle the 48 cards randomly.Distribute the cards equally to each of the registered players. A difference of one card between players is acceptable.
Display all players with all the cards that have been given to them.

Coding Restrictions:
You must use simple (1-D) arrays .
You are not allowed to use ArrayLists or LinkedLists.
You are not allowed to implement any form of GUI. (E.g. Swing, AWT, etc.)


First off, we are not here to do your assignment for you. We can help in debugging if you've given up on life after 8 hours on one bug, or if you've been stumped on a specific implementation and have exhausted your coffee supply, or if you have any secondary, more abstract questions about your work. This is not a homework thread, but most of the time, we'll give you the benefit of the doubt when you need some help, that you've actually been staring at this problem and trying to code for hours and making no progress. But at the moment, you really make it seem like you just want us to complete it for you.


If this is your first programming assignment ever and you're not planning to be in a Computer Science relevant industry, then I feel for you, but it's very unlikely that the teacher just threw you into here without teaching you incrementally all the required steps.

You are given the entire class diagram, which involves several classes, what functions should exist in each class, what those functions should do, and how they interact with each other. Your only job is to decide on an appropriate data structure to use for each class implementation, implement each function, and then link them all together in a main loop.

Your class implementation is already restricted for you; you can't use ArrayLists or LinkedLists. Ask yourself, what's left?

You function implementations begin at the simplest level, in this case, the lowest class in the class diagram, the card.

Implement all the functions of the card, then test that they do what they're required to do. Once you're done that level, move up another step to a higher level, where each step up uses the new classes that you've implemented. Unless you have a lot of experience, you cannot implement a class without implementing the classes that it depends on. How can you dealCards() if you haven't created the structure for a Deck and Card yet?

The class diagram gives you a visual representation of how to implement the solution to a problem, which is a Happy Family Game in this case. They help you by simplifying the "what to implement and their relationships" portion and let you focus on "how to implement," once you've verified that the diagram is correct.


All of your restrictions should be fairly obvious with how they fit into the class diagrams.



Firstly yes I did post for help because I thought you guys could give me a headups on where to start. But I never told nor expected anyone to do it for me. If you noticed, I asked if anyone was good at OOP, before asking for help.
Nevertheless I'm sorry if I made it seem that way to you.

Secondly, I posted the coding restrictions because tec27 mentioned ArrayLists and it was only right to inform him that I couldn't use that. Not for anyone to do my assignment for me.

Thirdly, yes it's my first assignment.

Lastly, thanks for telling me that I should start coding at the Card class because it is the lowest class. It was all I really needed.

Edit: When you say appropriate data structure to use for each class implementation, you mean either Int, Str, Double etc.. Yeah?


That's okay, I did notice someone ask, but I didn't recognize that it was you. All I saw was a big diagram, and a listing of requirements. My bad. At the very least, it keeps everyone honest, which is nice.

By structure, I meant choosing a data structure where not explicitly stated, specifically between ArrayLists and LinkedLists, though I believe there aren't many cases where ArrayLists are even used, and LinkedLists are overkill in this application. Not a real big Java programmer myself, so I can only be of limited help there.

Make sure you follow the exact guidelines your professor gave.
There is no one like you in the universe.
tec27
Profile Blog Joined June 2004
United States3701 Posts
November 17 2012 09:55 GMT
#3932
On November 17 2012 18:06 Blisse wrote:
Show nested quote +
On November 17 2012 17:27 kaykaykay wrote:
On November 17 2012 16:52 Blisse wrote:
On November 17 2012 16:23 kaykaykay wrote:
Oh right. Forgot to add this.

Required Functionalities:
User registration of up to five players (A to E).
Player's name must be three to eight characters.
Shuffle the 48 cards randomly.Distribute the cards equally to each of the registered players. A difference of one card between players is acceptable.
Display all players with all the cards that have been given to them.

Coding Restrictions:
You must use simple (1-D) arrays .
You are not allowed to use ArrayLists or LinkedLists.
You are not allowed to implement any form of GUI. (E.g. Swing, AWT, etc.)


First off, we are not here to do your assignment for you. We can help in debugging if you've given up on life after 8 hours on one bug, or if you've been stumped on a specific implementation and have exhausted your coffee supply, or if you have any secondary, more abstract questions about your work. This is not a homework thread, but most of the time, we'll give you the benefit of the doubt when you need some help, that you've actually been staring at this problem and trying to code for hours and making no progress. But at the moment, you really make it seem like you just want us to complete it for you.


If this is your first programming assignment ever and you're not planning to be in a Computer Science relevant industry, then I feel for you, but it's very unlikely that the teacher just threw you into here without teaching you incrementally all the required steps.

You are given the entire class diagram, which involves several classes, what functions should exist in each class, what those functions should do, and how they interact with each other. Your only job is to decide on an appropriate data structure to use for each class implementation, implement each function, and then link them all together in a main loop.

Your class implementation is already restricted for you; you can't use ArrayLists or LinkedLists. Ask yourself, what's left?

You function implementations begin at the simplest level, in this case, the lowest class in the class diagram, the card.

Implement all the functions of the card, then test that they do what they're required to do. Once you're done that level, move up another step to a higher level, where each step up uses the new classes that you've implemented. Unless you have a lot of experience, you cannot implement a class without implementing the classes that it depends on. How can you dealCards() if you haven't created the structure for a Deck and Card yet?

The class diagram gives you a visual representation of how to implement the solution to a problem, which is a Happy Family Game in this case. They help you by simplifying the "what to implement and their relationships" portion and let you focus on "how to implement," once you've verified that the diagram is correct.


All of your restrictions should be fairly obvious with how they fit into the class diagrams.



Firstly yes I did post for help because I thought you guys could give me a headups on where to start. But I never told nor expected anyone to do it for me. If you noticed, I asked if anyone was good at OOP, before asking for help.
Nevertheless I'm sorry if I made it seem that way to you.

Secondly, I posted the coding restrictions because tec27 mentioned ArrayLists and it was only right to inform him that I couldn't use that. Not for anyone to do my assignment for me.

Thirdly, yes it's my first assignment.

Lastly, thanks for telling me that I should start coding at the Card class because it is the lowest class. It was all I really needed.

Edit: When you say appropriate data structure to use for each class implementation, you mean either Int, Str, Double etc.. Yeah?


That's okay, I did notice someone ask, but I didn't recognize that it was you. All I saw was a big diagram, and a listing of requirements. My bad. At the very least, it keeps everyone honest, which is nice.

By structure, I meant choosing a data structure where not explicitly stated, specifically between ArrayLists and LinkedLists, though I believe there aren't many cases where ArrayLists are even used, and LinkedLists are overkill in this application. Not a real big Java programmer myself, so I can only be of limited help there.

Make sure you follow the exact guidelines your professor gave.

ArrayLists are used a helluva lot in Java

Anyway, I wasn't saying you *should* used lists for this assignment, just that your instructor is dumb and is setting a bad example for you. A really bad example. Do what it takes to complete the assignment and then purge all of his shitty design and shitty type usage from your mind.
Can you jam with the console cowboys in cyberspace?
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
November 17 2012 10:30 GMT
#3933
On November 17 2012 18:55 tec27 wrote:
ArrayLists are used a helluva lot in Java


What's the difference between ArrayLists, LinkedLists, and Lists? o:
There is no one like you in the universe.
heishe
Profile Blog Joined June 2009
Germany2284 Posts
November 17 2012 11:14 GMT
#3934
On November 17 2012 19:30 Blisse wrote:
Show nested quote +
On November 17 2012 18:55 tec27 wrote:
ArrayLists are used a helluva lot in Java


What's the difference between ArrayLists, LinkedLists, and Lists? o:


I haven't programmed Java a lot so AFAIK List is just the base class for ArrayList and LinkedList, but no guarantee for that.

LinkedList and ArrayList are the same in usage and behavior, they just differ in how they're implemented internally. In short: ArrayList is always faster on modern machines, so never used LinkedList.
If you value your soul, never look into the eye of a horse. Your soul will forever be lost in the void of the horse.
tec27
Profile Blog Joined June 2004
United States3701 Posts
November 17 2012 11:17 GMT
#3935
On November 17 2012 19:30 Blisse wrote:
Show nested quote +
On November 17 2012 18:55 tec27 wrote:
ArrayLists are used a helluva lot in Java


What's the difference between ArrayLists, LinkedLists, and Lists? o:

List is just an interface for any type of list of things (so both ArrayList and LinkedList implement List).

ArrayList is a dynamically sized array (basically, a data structure backed by an array that keeps track of its size. When the size would have to exceed the array size, it allocates a new array with a larger size (generally the size doubles each time, but its implementation dependent, I'm not sure what the specs are for Java's)).

LinkedList is a list backed by (obviously) a linked list.

So ArrayList has constant time access by index, on average constant time appending, and more expensive insertions/deletions. LinkedList would have constant time insertion/deletion, and then more expensive access by index.
Can you jam with the console cowboys in cyberspace?
Nitro68
Profile Blog Joined December 2007
France470 Posts
Last Edited: 2012-11-17 11:19:02
November 17 2012 11:18 GMT
#3936
Tec27 was faster
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
November 17 2012 12:12 GMT
#3937
On November 16 2012 22:01 flabbert wrote:
Show nested quote +
On November 16 2012 21:22 MisterD wrote:
On November 16 2012 20:52 flabbert wrote:
I have a fairly specific problem in php. I started teaching myself php a short while ago by writing an IRC gatherbot for CSGO gathers, however, i now want to get the serverlog from the CSGO server, and parse it. But i am having issues with both the socket connections needing data for the while loop to continue. There should be a way around this, but i have yet to understand how to do it properly.


you should really ask a question if you want an answer

dumb of me!

how do i manage 2 sockets in 1 while loop?

example:
+ Show Spoiler +

$socket = ircconnection;
$socket2 = csgoserverconnection;

while (!feof($socket) || !feof($socket2))
{
do stuff
}


i assume you want to terminate when either socket goes dead, so you'd have to do !feof($socket) && !feof($socket2) ;P
A quick google tells me there don't appear to be established standard patterns for doing this, so i guess the best you can do is switch to a while(true), to individual if(feof($socket)) {close($socket2); break;} and vice versa and then just handle reading for either sockets with a "if there is data, otherwise handle other socket" and not "wait until there is data (and ignore the other socket for that duration)".

I haven't touched php in ages, so i can't give you a proper explanation for that, just a general answer. Maybe someone else can do better, but otherwise i'd say just try around a bit and if you encounter a more specific problem ask about that.
Gold isn't everything in life... you need wood, too!
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
November 17 2012 12:59 GMT
#3938
On November 17 2012 10:45 kaykaykay wrote:
Show nested quote +
On November 16 2012 19:59 Frigo wrote:
On November 15 2012 23:55 kaykaykay wrote:
Is there anybody decent with Object oriented programing eclipse java here? :D

How can we help?


+ Show Spoiler +
Hi Frigo,
How do you use a class diagram to help you write codes?
I've no idea where to start.


[image loading]


What is the difference between a dotted arrow (like the one between Helper and HappyFamilyGame) and a solid arrow in association?
"When the geyser died, a probe came out" - SirJolt
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
Last Edited: 2012-11-17 15:14:11
November 17 2012 15:11 GMT
#3939
for a quick uml reference, i have bookmarked http://www.holub.com/goodies/uml/ - not perfect, but does the job. From there:

[image loading]
Dependency. User uses Resource, but Resource is not a member of (field in) the User class. If Resource is modified, some method of User might need to be modified. Resource is typically a local variable or argument of some method in User. The line is typically stereotyped (e.g. «creates» «modifies»)

[image loading]
Navigability Messages flow in direction of arrow (only). An unmarked line is "unspecified" navigability. An X indicates non-navigable (Uml 2.0). Typically, if a role is specified, then navigability in the direction of that role is implicit. If an object doesn't have a role in some relationship, then there's no way to send messages to it, so non-navigability is implicit.

so in essence, the Game uses the helper class internally, but it consists of players, decks and cards and given a game instance, you can access it's players, decks and cards, but not it's helper. solid arrow means "if you deal with X, you'll also deal with Y", dashed arrow means "if you want to use X, Y is used as well, but you don't need to concern yourself with it".
Gold isn't everything in life... you need wood, too!
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
November 17 2012 17:36 GMT
#3940
That site will come in handy, thanks
"When the geyser died, a probe came out" - SirJolt
Prev 1 195 196 197 198 199 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 12h 16m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft333
CosmosSc2 301
IndyStarCraft 135
SpeCial 126
Nathanias 122
Livibee 93
StarCraft: Brood War
Britney 19351
yabsab 28
Counter-Strike
Stewie2K541
PGG 72
Heroes of the Storm
Khaldor258
Other Games
Grubby3359
FrodaN3309
RotterdaM238
ceh9215
KnowMe197
Skadoodle180
Maynarde32
fpsfer 2
Organizations
Other Games
gamesdonequick1143
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 23 non-featured ]
StarCraft 2
• StrangeGG 54
• Hupsaiya 46
• 3DClanTV 43
• musti20045 36
• davetesta16
• Adnapsc2 7
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• Airneanach84
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• WagamamaTV903
• Ler64
League of Legends
• Doublelift2801
Other Games
• imaqtpie1374
• Scarra451
• Shiphtur316
Upcoming Events
Afreeca Starleague
12h 16m
Barracks vs Snow
Wardi Open
13h 16m
Monday Night Weeklies
18h 16m
Replay Cast
1d 2h
Afreeca Starleague
1d 12h
Soma vs Bisu
OSC
1d 16h
OSC
1d 20h
PiGosaur Monday
2 days
The PondCast
3 days
OSC
3 days
[ Show More ]
Wardi Open
4 days
CranKy Ducklings
5 days
Safe House 2
5 days
Sparkling Tuna Cup
6 days
Safe House 2
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
Maestros of the Game
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.