• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 07:29
CEST 13:29
KST 20:29
  • 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
[ASL21] Ro4 Preview: On Course12Code S Season 1 - RO8 Preview7[ASL21] Ro8 Preview Pt2: Progenitors8Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun13[ASL21] Ro8 Preview Pt1: Inheritors16
Community News
Weekly Cups (May 4-10): Clem, MaxPax, herO win1Maestros of The Game 2 announcement and schedule !10Weekly Cups (April 27-May 4): Clem takes triple0RSL Revival: Season 5 - Qualifiers and Main Event12Code S Season 1 (2026) - RO12 Results1
StarCraft 2
General
MaNa leaves Team Liquid Weekly Cups (May 4-10): Clem, MaxPax, herO win Code S Season 1 - RO8 Preview Behind the Blue - Team Liquid History Book Weekly Cups (April 27-May 4): Clem takes triple
Tourneys
2026 GSL Season 2 Qualifiers Maestros of The Game 2 announcement and schedule ! SC2 INu's Battles#16 <BO.9> Master Swan Open (Global Bronze-Master 2) GSL Code S Season 1 (2026)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players
External Content
Mutation # 525 Wheel of Misfortune The PondCast: SC2 News & Results Mutation # 524 Death and Taxes Mutation # 523 Firewall
Brood War
General
ASL Tickets to Live Event Finals? Pros React To: Leta vs Tulbo (ASL S21, Ro.8) Flashes ASL S21 Ro8 Review BW General Discussion [ASL21] Ro4 Preview: On Course
Tourneys
[ASL21] Semifinals B [ASL21] Semifinals A [Megathread] Daily Proleagues [BSL22] RO16 Group Stage - 02 - 10 May
Strategy
[G] Hydra ZvZ: An Introduction Simple Questions, Simple Answers Fighting Spirit mining rates Muta micro map competition
Other Games
General Games
Starcraft Tabletop Miniature Game Warcraft III: The Frozen Throne Stormgate/Frost Giant Megathread PC Games Sales Thread Path of Exile
Dota 2
The Story of Wings Gaming
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread UK Politics Mega-thread YouTube Thread European Politico-economics QA Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread McBoner: A hockey love story Formula 1 Discussion
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
How EEG Data Can Predict Gam…
TrAiDoS
ramps on octagon
StaticNine
Funny Nicknames
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1268 users

The Big Programming Thread - Page 252

Forum Index > General Forum
Post a Reply
Prev 1 250 251 252 253 254 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.
Mstring
Profile Joined September 2011
Australia510 Posts
February 19 2013 23:03 GMT
#5021
On February 20 2013 07:58 InRaged wrote:
Thank you, delHospital. Should be char tmp[] instead;

darkness, If you can use strncat instead then instead of tmp variable you could do
strncat(string, (char *)&c, 1);
The casting is required in such case, cause your c is int and not char. Last argument tells strncat how much bytes to copy.


This will compile and won't give you a seg-fault, but will fail to work correctly when the hardware does not store the least significant bit in the first byte of the int.
InRaged
Profile Joined February 2007
1047 Posts
February 19 2013 23:15 GMT
#5022
You mean big-endian hardware, right? Zero-experience programming for this type of machines. Regular Int to char works as expected though, so it's only when working with pointers you have to keep that mind?
Mstring
Profile Joined September 2011
Australia510 Posts
February 19 2013 23:37 GMT
#5023
On February 20 2013 08:15 InRaged wrote:
You mean big-endian hardware, right? Zero-experience programming for this type of machines. Regular Int to char works as expected though, so it's only when working with pointers you have to keep that mind?


You're giving something that expects a char* an int* and taking for granted the fact that it just happens to be stored in a way which will works in this particular case. You don't need to keep it in mind if you avoid casting pointers like this.
Emon_
Profile Blog Joined November 2009
3925 Posts
February 19 2013 23:51 GMT
#5024
I've been thinking about creating a game aimed at children and young adults to help them with learning math. What is the fastest way to do this as a single player game and what is the fastest if I wanted to make it multiplayer?
"I know that human beings and fish can coexist peacefully" -GWB ||
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
February 20 2013 00:25 GMT
#5025
On February 20 2013 07:58 InRaged wrote:
Thank you, delHospital. Should be char tmp[];

darkness, If you can use strncat instead of strcat then instead of tmp variable you could do
strncat(string, (char *)&c, 1);
The casting is required in such case, cause your c is int and not char (but it isn't as portable, see Mstring's responce). Last argument tells strncat how much bytes to copy.

Also there is a bug in your algorithm. Check your if conditions to find it ;P


The bug is I had wrong condition to check for lower-case letters. There is 'a' and 'M'.
Other than that, everything works. Thanks for help.
InRaged
Profile Joined February 2007
1047 Posts
February 20 2013 02:01 GMT
#5026
On February 20 2013 08:37 Mstring wrote:
Show nested quote +
On February 20 2013 08:15 InRaged wrote:
You mean big-endian hardware, right? Zero-experience programming for this type of machines. Regular Int to char works as expected though, so it's only when working with pointers you have to keep that mind?


You're giving something that expects a char* an int* and taking for granted the fact that it just happens to be stored in a way which will works in this particular case. You don't need to keep it in mind if you avoid casting pointers like this.

No need to be condescending. I took it for granted, because it is granted that on x86 and on any other little-endian system it is stored in a way that will work. Big-endian systems are pretty exotic, so forgive me for forgetting about such details.
Mstring
Profile Joined September 2011
Australia510 Posts
February 20 2013 02:15 GMT
#5027
On February 20 2013 11:01 InRaged wrote:
Show nested quote +
On February 20 2013 08:37 Mstring wrote:
On February 20 2013 08:15 InRaged wrote:
You mean big-endian hardware, right? Zero-experience programming for this type of machines. Regular Int to char works as expected though, so it's only when working with pointers you have to keep that mind?


You're giving something that expects a char* an int* and taking for granted the fact that it just happens to be stored in a way which will works in this particular case. You don't need to keep it in mind if you avoid casting pointers like this.

No need to be condescending. I took it for granted, because it is granted that on x86 and on any other little-endian system it is stored in a way that will work. Big-endian systems are pretty exotic, so forgive me for forgetting about such details.

I think you are seeing things in my comment which aren't there. I was simply being direct.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-02-20 05:58:25
February 20 2013 05:00 GMT
#5028
Can't go around thinking criticisms of your code are condescending, that'll prevent you from improving. If something is wrong and someone points it out, that's good for you, they're not trying to insult you or anything.

i can grammar
Who after all is today speaking about the destruction of the Armenians?
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
February 20 2013 08:52 GMT
#5029
On February 20 2013 08:51 Emon_ wrote:
I've been thinking about creating a game aimed at children and young adults to help them with learning math. What is the fastest way to do this as a single player game and what is the fastest if I wanted to make it multiplayer?

Depends on how you plan to make the game. If you're just going for some interface with buttons and textboxes, you can go with pretty much anything, such as C# or Java. If you plan to have proper "graphics", you'll probably need SDL. While there are bindings for most languages, I think the easiest in that case would be to go with Python and Pygame (SDL.Net was last updated like 2-3 years ago, I don't know about Java SDL bindings).

Adding multiplayer is probably just as complex on Python as it is in C# or Java, you need to learn about sockets etc regardless.
Pibacc
Profile Joined May 2010
Canada545 Posts
Last Edited: 2013-02-20 09:16:50
February 20 2013 09:16 GMT
#5030
Hey everyone. I'm just learning how to use visual basic and I'm stuck with making a program to find the average for best 3 out of 4 using a self made private sub that I call to using a button. Below are pictures of the form and source code.

Form
Source Code

I thought this would work but when I run the program the calculations are off. I tested using 50/50/50/10 and the average comes out as 33.33~.

Anyone able to help me figure out the problem?
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
Last Edited: 2013-02-20 09:27:36
February 20 2013 09:23 GMT
#5031
On February 20 2013 18:16 Pibacc wrote:
Hey everyone. I'm just learning how to use visual basic and I'm stuck with making a program to find the average for best 3 out of 4 using a self made private sub that I call to using a button. Below are pictures of the form and source code.

Form
Source Code

I thought this would work but when I run the program the calculations are off. I tested using 50/50/50/10 and the average comes out as 33.33~.

Anyone able to help me figure out the problem?

You should be assigning dblLow, you're doing it the other way around. It should be dblLow = dblV4 instead of dblV4 = dblLow.

As it is right now, when you get to the actual calculation, dblLow is still unassigned and some of your dblV values has been set to the dblLow unassigned value (0 by default in VB). So the actual calculation in this case becomes (50 + 0 + 50 + 0 - 0) / 3
Pibacc
Profile Joined May 2010
Canada545 Posts
Last Edited: 2013-02-20 09:32:52
February 20 2013 09:30 GMT
#5032
On February 20 2013 18:23 Tobberoth wrote:
Show nested quote +
On February 20 2013 18:16 Pibacc wrote:
Hey everyone. I'm just learning how to use visual basic and I'm stuck with making a program to find the average for best 3 out of 4 using a self made private sub that I call to using a button. Below are pictures of the form and source code.

Form
Source Code

I thought this would work but when I run the program the calculations are off. I tested using 50/50/50/10 and the average comes out as 33.33~.

Anyone able to help me figure out the problem?

You should be assigning dblLow, you're doing it the other way around. It should be dblLow = dblV4 instead of dblV4 = dblLow.

As it is right now, when you get to the actual calculation, dblLow is still unassigned and some of your dblV values has been set to the dblLow unassigned value (0 by default in VB). So the actual calculation in this case becomes (50 + 0 + 50 + 0 - 0) / 3


WOW I cannot believe I fucked that up for only half of them lol. After fixing the first if statement it works. Thank you very much!
Soan
Profile Blog Joined August 2010
New Zealand194 Posts
February 20 2013 09:52 GMT
#5033
On February 20 2013 08:51 Emon_ wrote:
I've been thinking about creating a game aimed at children and young adults to help them with learning math. What is the fastest way to do this as a single player game and what is the fastest if I wanted to make it multiplayer?


The fastest way is to probably use a pre-existing engine such as Unity. All the difficult stuff is taken care of and you're just left with writing the game code and supplying the art. Of course you also have to learn how to use Unity, but there's plenty of tutorials around on the internets.
SgtCoDFish
Profile Blog Joined July 2010
United Kingdom1520 Posts
February 20 2013 10:12 GMT
#5034
On February 20 2013 08:51 Emon_ wrote:
I've been thinking about creating a game aimed at children and young adults to help them with learning math. What is the fastest way to do this as a single player game and what is the fastest if I wanted to make it multiplayer?


This is impossible to answer without knowing about you first; what programming experience do you already have? If you're already super experienced with a language, you'll make a game quickest in that language. If not, something like pygame will probably be quick (I've never used it but I hear good things)

If your only goal is making it quick, there are tools like Game Maker that can make games/prototypes really quickly, sometimes without even needing code. People will shit on things like Game Maker but really if you want speed you won't beat it with a traditional programming language for a small quick game. I think Game Maker can do both single and multiplayer, but don't quote me on that.

(Personally, I would use Java+LibGDX because that's what I'm comfortable with. The only other language I'm proficient with is C++ and C++ is a bit of a pain for multiplayer.)
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-02-20 19:19:39
February 20 2013 19:12 GMT
#5035
Question about C:

How can I create n strings using heap?

E.g.

#define STRSIZE 50
input n = 5

I was thinking about usng a loop, but I guess this wouldn't work because of 'i':

for (i = 1; i <= n; i++)
char *string'i' = malloc(STRSIZE * sizeof(char));

So it may not be created as string1, string2, string3, etc.

suggestions?

Edit: Is that how malloc should be used for char string[STRSIZE]?
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-02-21 02:11:15
February 21 2013 02:08 GMT
#5036
pointer pointer, same thing as an array pointers or array of arrays. In c, you can think of an array as the same thing as a pointer - foo[5] is just a fancy way of writing *(foo + 5). Sort of...

(syntax may not be exact, take with grain of salt and run through gcc to find my obvious fuckups):
char **my_strings;
int n; // sometime later n = 5 I guess? You weren't clear on that but w/e

my_strings = (char **) malloc(n * sizeof(char *));

for (int i = 1; i < n; ++i) {
my_strings[i] = (char *) malloc(STRSIZE * sizeof(char));
}
Who after all is today speaking about the destruction of the Armenians?
ranshaked
Profile Blog Joined August 2010
United States870 Posts
February 22 2013 16:49 GMT
#5037
Hey guys! I need a little help in Java. I'm trying to convert a String to specific ints. It has to do with a card game, so I have face values 2-10, jack, queen, king, ace. I'm using a method called getface(): and I can print out the face values fine, but I need to convert them to ints in order to compare them easier in order to determine the winner of a hand.

I've tried:
Switch statements (only to find out that you can't use case 'Ace': faceValue = 14;...apparently it only works with ints!)
If statements (doesn't work, it won't let me force the switch)
Integer.parseInt(string) (doesn't work, it throws a bunch of errors)


Is there another way to convert the face value from a String to it's equivalent int?
DumJumJmyWum
Profile Joined March 2011
United States75 Posts
February 22 2013 17:07 GMT
#5038
On February 23 2013 01:49 ranshaked wrote:
Hey guys! I need a little help in Java. I'm trying to convert a String to specific ints. It has to do with a card game, so I have face values 2-10, jack, queen, king, ace. I'm using a method called getface(): and I can print out the face values fine, but I need to convert them to ints in order to compare them easier in order to determine the winner of a hand.

I've tried:
Switch statements (only to find out that you can't use case 'Ace': faceValue = 14;...apparently it only works with ints!)
If statements (doesn't work, it won't let me force the switch)
Integer.parseInt(string) (doesn't work, it throws a bunch of errors)


Is there another way to convert the face value from a String to it's equivalent int?


For the Strings that are numbers, you can use Integer.parse(). It will throw an exception for non integer values.
However, I would suggest trying to use enums instead as you can use autocomplete in your IDE as well as give your code better structure.

Also, as of Java 7, you can use strings in switch statements. So, if you're allowed to upgrade to version 7, that would probably be the easiest.
CapnAmerica
Profile Blog Joined November 2010
United States508 Posts
February 22 2013 17:56 GMT
#5039
On February 23 2013 01:49 ranshaked wrote:
Hey guys! I need a little help in Java. I'm trying to convert a String to specific ints. It has to do with a card game, so I have face values 2-10, jack, queen, king, ace. I'm using a method called getface(): and I can print out the face values fine, but I need to convert them to ints in order to compare them easier in order to determine the winner of a hand.

I've tried:
Switch statements (only to find out that you can't use case 'Ace': faceValue = 14;...apparently it only works with ints!)
If statements (doesn't work, it won't let me force the switch)
Integer.parseInt(string) (doesn't work, it throws a bunch of errors)


Is there another way to convert the face value from a String to it's equivalent int?


I only have c++ programming experience, but you could simply assign a value to a new variable for each card. For your if statements, if cardname = jack then cardnum = 11, if cardname = queen then cardnum = 12, and so on.

Forgive my ignorance though, but why can't you use an assignment statement like:

If I were doing this in c++ (again, never done anything in java)

void convertCardNums()

{

string cardValue;

if (cardValue = "1")
cardValue = "01";

...

if (cardValue = "jack")
cardValue = "11";
if (cardValue = "queen")
cardValue = "12";
if (cardValue = "king")
cardValue = "13";

}

After all this time, I still haven't figured out the correlation between sexual orientation and beating an unprepared opponent. Are homosexuals the next koreans? Many players seem to think it's an unfair advantage. - pandaburn
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2013-02-22 19:02:38
February 22 2013 18:59 GMT
#5040
On February 23 2013 01:49 ranshaked wrote:
Hey guys! I need a little help in Java. I'm trying to convert a String to specific ints. It has to do with a card game, so I have face values 2-10, jack, queen, king, ace. I'm using a method called getface(): and I can print out the face values fine, but I need to convert them to ints in order to compare them easier in order to determine the winner of a hand.

I've tried:
Switch statements (only to find out that you can't use case 'Ace': faceValue = 14;...apparently it only works with ints!)
If statements (doesn't work, it won't let me force the switch)
Integer.parseInt(string) (doesn't work, it throws a bunch of errors)


Is there another way to convert the face value from a String to it's equivalent int?


The performance of a system that has to use a switch statement every time you want to compare card values is going to be unnecessarily bad. This is a case where you don't want to use strings to store the card. Instead, use ints for all the cards, and only convert them to strings when you need to display it. :/

If you do it that way, you can simply use a single List with all the names of the strings in the correct index, so faceString[1] returns "Ace".


This would be more of a design issue/solution.
There is no one like you in the universe.
Prev 1 250 251 252 253 254 1032 Next
Please log in or register to reply.
Live Events Refresh
INu's Battles
11:00
INu's Battles#16
ByuN vs herO
IntoTheiNu 735
LiquipediaDiscussion
Afreeca Starleague
10:00
Ro4 Match 2
Light vs Flash
Afreeca ASL 21126
StarCastTV_EN617
Liquipedia
CranKy Ducklings
10:00
Master Swan Open #103
CranKy Ducklings77
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko183
ProTech152
StarCraft: Brood War
Britney 48357
Calm 12171
Sea 9492
Bisu 4417
Jaedong 2441
BeSt 1977
Rush 1290
EffOrt 763
Horang2 761
Pusan 555
[ Show more ]
actioN 266
Larva 162
Mind 143
ToSsGirL 130
Mong 103
Hyun 94
Sharp 90
Killer 63
HiyA 55
Sexy 50
hero 33
NaDa 21
[sc1f]eonzerg 19
GoRush 19
Bale 17
Terrorterran 17
soO 16
sorry 14
scan(afreeca) 14
JulyZerg 13
ajuk12(nOOB) 12
Hm[arnc] 8
SilentControl 7
Shine 6
Dota 2
XcaliburYe238
Counter-Strike
olofmeister3043
shoxiejesuss1582
x6flipin353
markeloff131
edward65
Other Games
singsing1554
B2W.Neo402
Happy296
monkeys_forever163
crisheroes126
ToD87
Pyrionflax8
Organizations
Counter-Strike
PGL25316
Other Games
gamesdonequick575
StarCraft: Brood War
UltimateBattle 321
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 17 non-featured ]
StarCraft 2
• StrangeGG 85
• CranKy Ducklings SOOP14
• Kozan
• sooper7s
• Migwel
• LaughNgamezSOOP
• IndyKCrew
• intothetv
• AfreecaTV YouTube
StarCraft: Brood War
• iopq 2
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Nemesis3842
• Jankos849
• Stunt552
Other Games
• WagamamaTV358
Upcoming Events
PiGosaur Cup
12h 31m
Replay Cast
21h 31m
Replay Cast
1d 12h
The PondCast
1d 22h
OSC
1d 22h
Replay Cast
2 days
RSL Revival
2 days
OSC
3 days
Korean StarCraft League
3 days
RSL Revival
3 days
[ Show More ]
BSL
4 days
GSL
4 days
Cure vs herO
SHIN vs Maru
BSL
5 days
Replay Cast
5 days
Replay Cast
6 days
The PondCast
6 days
Liquipedia Results

Completed

Proleague 2026-05-11
WardiTV TLMC #16
Nations Cup 2026

Ongoing

BSL Season 22
ASL Season 21
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
KK 2v2 League Season 1
BSL 22 Non-Korean Championship
SCTL 2026 Spring
RSL Revival: Season 5
2026 GSL S1
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2

Upcoming

Escore Tournament S2: W7
YSL S3
Escore Tournament S2: W8
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
BLAST Bounty Summer 2026: Closed Qualifier
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
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 © 2026 TLnet. All Rights Reserved.