• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 02:43
CET 08:43
KST 16:43
  • 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
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2BGE Stara Zagora 2026 announced15[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13
StarCraft 2
General
Maestros of the Game: Live Finals Preview (RO4) BGE Stara Zagora 2026 announced Weekly Cups (Nov 24-30): MaxPax, Clem, herO win SC2 Proleague Discontinued; SKT, KT, SGK, CJ disband Information Request Regarding Chinese Ladder
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3 Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
Which season is the best in ASL? [ASL20] Ask the mapmakers — Drop your questions BW General Discussion FlaSh's Valkyrie Copium BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Stormgate/Frost Giant Megathread The Perfect Game Path of Exile Nintendo Switch Thread Should offensive tower rushing be viable in RTS games?
Dota 2
Official 'what is Dota anymore' discussion
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
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine US Politics Mega-thread The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
James Bond movies ranking - pa…
Topin
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1258 users

The Big Programming Thread - Page 411

Forum Index > General Forum
Post a Reply
Prev 1 409 410 411 412 413 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.
Vilanoil
Profile Blog Joined July 2010
Germany47 Posts
December 20 2013 08:09 GMT
#8201
On December 20 2013 11:20 Cyx. wrote:
Show nested quote +
On December 20 2013 11:02 Maero wrote:
On December 20 2013 10:11 Cyx. wrote:
On December 20 2013 09:26 Maero wrote:
On December 20 2013 07:49 Vilanoil wrote:

int sumAge(PlayerList list){
//stuff
}

int sumAge(){
return sumAge(this);
}
// is called in main with
players.sumAge();

I'm not sure but it seems like that is a recursive call of sumAge() and that (this) is automatically referring to the list players.
Would be awesome if someone could explain this.


All this is really doing is giving you a shorthand to sum the ages of the PlayerList this method is being called from. Ex.

PlayerList a;
PlayerList b; // pretend these have stuff in it

a.sumAge(b); // performs the operation on PlayerList b (I assume summing up the ages...)
a.sumAge(); // calls the non-parameterized one, then falls back to the parameterized method

// Basically...

a.sumAge() == a.sumAge(a);


Let me know if that doesn't make sense! It seems like a strange implementation, but that is the literal way that it is working.


But I guess the question is... good lord, why, please why something so awfully confusing? players.sumAge() will call sumAge(this)... calling players.sumAge(this) within that function just means you end up calling sumAge(this, this) basically. It's literally just adding an extra definition and extra confusion to something that should be one method. I see absolutely zero sense in doing it this way instead of just writing sumAge() to do the actual summing of ages, and then not bother with the definition that has an extra parameter (which never even gets used).


We completely agree! But he asked for an explanation of how it was working, so that's what I provided
The note at the end about it being a strange implementation was alluding to your point - there's no real good reason to put it together in that way and either one or the other would work fine (depending on how the method interacts with other PlayerList age sums).


okie, cool =) I guess I just wasn't sure if it was like... a Java thing or something (I mostly use C++) or if it was as totally weird as it seemed. @Vilanoil: were you given the code like that (for your class) or did you write the whole PlayerList class yourself?


The given like that:

int sumAge(PlayerList list)
{
// *** your implementation ***
}

// *************************************************************************
// recursive computation of sum of games of all players in the list
int sumAge()
{
return sumAge(this);
}

All we had to do is filling the gaps and all methods are give in this way ... It was confusing for us too~
But i guess i will just forget about it since it seems pretty useless
Cyx.
Profile Joined November 2010
Canada806 Posts
December 20 2013 08:51 GMT
#8202
On December 20 2013 17:09 Vilanoil wrote:
Show nested quote +
On December 20 2013 11:20 Cyx. wrote:
On December 20 2013 11:02 Maero wrote:
On December 20 2013 10:11 Cyx. wrote:
On December 20 2013 09:26 Maero wrote:
On December 20 2013 07:49 Vilanoil wrote:

int sumAge(PlayerList list){
//stuff
}

int sumAge(){
return sumAge(this);
}
// is called in main with
players.sumAge();

I'm not sure but it seems like that is a recursive call of sumAge() and that (this) is automatically referring to the list players.
Would be awesome if someone could explain this.


All this is really doing is giving you a shorthand to sum the ages of the PlayerList this method is being called from. Ex.

PlayerList a;
PlayerList b; // pretend these have stuff in it

a.sumAge(b); // performs the operation on PlayerList b (I assume summing up the ages...)
a.sumAge(); // calls the non-parameterized one, then falls back to the parameterized method

// Basically...

a.sumAge() == a.sumAge(a);


Let me know if that doesn't make sense! It seems like a strange implementation, but that is the literal way that it is working.


But I guess the question is... good lord, why, please why something so awfully confusing? players.sumAge() will call sumAge(this)... calling players.sumAge(this) within that function just means you end up calling sumAge(this, this) basically. It's literally just adding an extra definition and extra confusion to something that should be one method. I see absolutely zero sense in doing it this way instead of just writing sumAge() to do the actual summing of ages, and then not bother with the definition that has an extra parameter (which never even gets used).


We completely agree! But he asked for an explanation of how it was working, so that's what I provided
The note at the end about it being a strange implementation was alluding to your point - there's no real good reason to put it together in that way and either one or the other would work fine (depending on how the method interacts with other PlayerList age sums).


okie, cool =) I guess I just wasn't sure if it was like... a Java thing or something (I mostly use C++) or if it was as totally weird as it seemed. @Vilanoil: were you given the code like that (for your class) or did you write the whole PlayerList class yourself?


The given like that:

int sumAge(PlayerList list)
{
// *** your implementation ***
}

// *************************************************************************
// recursive computation of sum of games of all players in the list
int sumAge()
{
return sumAge(this);
}

All we had to do is filling the gaps and all methods are give in this way ... It was confusing for us too~
But i guess i will just forget about it since it seems pretty useless


This is like... the weirdest fucking intro to recursion ever. You guys have talked about the implicit reference to "this" in method definitions right?
lannisport
Profile Joined February 2012
878 Posts
December 20 2013 09:32 GMT
#8203
Hey guys, I'm new to python and I'm trying to create a simple hangman game from one of my books. So far everything is good but I failed to recreate the part of the game that shows the dashes and the correct letters that you've guessed so far, such as PY---N I tried looking at the code example in the book but couldn't really understand how or why it works. I've copied the specific parts of the code that I don't understand.

I've commented each line to walk you through what I understand is happening.



so_far = "-" * len(word) # Creates dashes based on the length of the word

while wrong < MAX_WRONG and so_far != word:
print("\nSo far, the word is:\n", so_far) #Main loop, but I've cut out all the irrelevant stuff

guess = input("\n\nEnter your guess: ")

#Checking the Player's guess
if guess in word: #If the letter is in the word, let's say the word is PYTHON and the guess is O
print("\nYes!", guess, "is in the word!")

new = ""
for i in range(len(word)): #A sequence 0-6 is generated and this loop repeats 6 times
if guess == word[i]: #If the guess string matches the string from the index
new += guess # concatenate the guess string to whatever is in new
else:
new += so_far[i] #So new now becomes - in the first iteration
so_far = new #Once the loop ends so_far should look like ----O-



Am I understanding it right? And also... How do you even plan for this sorta thing? The book had an intro on pseudo code but I had never imagined to use a for loop and an if condition in this sort of combination.
Vilanoil
Profile Blog Joined July 2010
Germany47 Posts
December 20 2013 09:41 GMT
#8204
On December 20 2013 17:51 Cyx. wrote:
Show nested quote +
On December 20 2013 17:09 Vilanoil wrote:
On December 20 2013 11:20 Cyx. wrote:
On December 20 2013 11:02 Maero wrote:
On December 20 2013 10:11 Cyx. wrote:
On December 20 2013 09:26 Maero wrote:
On December 20 2013 07:49 Vilanoil wrote:

int sumAge(PlayerList list){
//stuff
}

int sumAge(){
return sumAge(this);
}
// is called in main with
players.sumAge();

I'm not sure but it seems like that is a recursive call of sumAge() and that (this) is automatically referring to the list players.
Would be awesome if someone could explain this.


All this is really doing is giving you a shorthand to sum the ages of the PlayerList this method is being called from. Ex.

PlayerList a;
PlayerList b; // pretend these have stuff in it

a.sumAge(b); // performs the operation on PlayerList b (I assume summing up the ages...)
a.sumAge(); // calls the non-parameterized one, then falls back to the parameterized method

// Basically...

a.sumAge() == a.sumAge(a);


Let me know if that doesn't make sense! It seems like a strange implementation, but that is the literal way that it is working.


But I guess the question is... good lord, why, please why something so awfully confusing? players.sumAge() will call sumAge(this)... calling players.sumAge(this) within that function just means you end up calling sumAge(this, this) basically. It's literally just adding an extra definition and extra confusion to something that should be one method. I see absolutely zero sense in doing it this way instead of just writing sumAge() to do the actual summing of ages, and then not bother with the definition that has an extra parameter (which never even gets used).


We completely agree! But he asked for an explanation of how it was working, so that's what I provided
The note at the end about it being a strange implementation was alluding to your point - there's no real good reason to put it together in that way and either one or the other would work fine (depending on how the method interacts with other PlayerList age sums).


okie, cool =) I guess I just wasn't sure if it was like... a Java thing or something (I mostly use C++) or if it was as totally weird as it seemed. @Vilanoil: were you given the code like that (for your class) or did you write the whole PlayerList class yourself?


The given like that:

int sumAge(PlayerList list)
{
// *** your implementation ***
}

// *************************************************************************
// recursive computation of sum of games of all players in the list
int sumAge()
{
return sumAge(this);
}

All we had to do is filling the gaps and all methods are give in this way ... It was confusing for us too~
But i guess i will just forget about it since it seems pretty useless


This is like... the weirdest fucking intro to recursion ever. You guys have talked about the implicit reference to "this" in method definitions right?


No we didn't cover anything like this. The only way we used "this" so far was actually in variable declaration in classes, eiter in the constructors or the class methods. ..
scudst0rm
Profile Joined May 2010
Canada1149 Posts
December 20 2013 19:28 GMT
#8205
On December 20 2013 18:32 lannisport wrote:
Hey guys, I'm new to python and I'm trying to create a simple hangman game from one of my books. So far everything is good but I failed to recreate the part of the game that shows the dashes and the correct letters that you've guessed so far, such as PY---N I tried looking at the code example in the book but couldn't really understand how or why it works. I've copied the specific parts of the code that I don't understand.

I've commented each line to walk you through what I understand is happening.

+ Show Spoiler +


so_far = "-" * len(word) # Creates dashes based on the length of the word

while wrong < MAX_WRONG and so_far != word:
print("\nSo far, the word is:\n", so_far) #Main loop, but I've cut out all the irrelevant stuff

guess = input("\n\nEnter your guess: ")

#Checking the Player's guess
if guess in word: #If the letter is in the word, let's say the word is PYTHON and the guess is O
print("\nYes!", guess, "is in the word!")

new = ""
for i in range(len(word)): #A sequence 0-6 is generated and this loop repeats 6 times
if guess == word[i]: #If the guess string matches the string from the index
new += guess # concatenate the guess string to whatever is in new
else:
new += so_far[i] #So new now becomes - in the first iteration
so_far = new #Once the loop ends so_far should look like ----O-



Am I understanding it right? And also... How do you even plan for this sorta thing? The book had an intro on pseudo code but I had never imagined to use a for loop and an if condition in this sort of combination.


It seems like you understand most of it. new += so_far[i] is basically saying "don't update this character in so_far"

I think it's a lot more intuitive to update so_far in place. This does the same thing but you can get rid of new:

for i in range(len(word)):
if guess == word[i]:
so_far[i] = word[i]


How do you plan this sort of thing? To me this is the most intuitive solution, i guess it just comes with experience.
You're like a one ranger army comin' at me...
Cyx.
Profile Joined November 2010
Canada806 Posts
December 20 2013 20:15 GMT
#8206
On December 21 2013 04:28 scudst0rm wrote:
Show nested quote +
On December 20 2013 18:32 lannisport wrote:
Hey guys, I'm new to python and I'm trying to create a simple hangman game from one of my books. So far everything is good but I failed to recreate the part of the game that shows the dashes and the correct letters that you've guessed so far, such as PY---N I tried looking at the code example in the book but couldn't really understand how or why it works. I've copied the specific parts of the code that I don't understand.

I've commented each line to walk you through what I understand is happening.

+ Show Spoiler +


so_far = "-" * len(word) # Creates dashes based on the length of the word

while wrong < MAX_WRONG and so_far != word:
print("\nSo far, the word is:\n", so_far) #Main loop, but I've cut out all the irrelevant stuff

guess = input("\n\nEnter your guess: ")

#Checking the Player's guess
if guess in word: #If the letter is in the word, let's say the word is PYTHON and the guess is O
print("\nYes!", guess, "is in the word!")

new = ""
for i in range(len(word)): #A sequence 0-6 is generated and this loop repeats 6 times
if guess == word[i]: #If the guess string matches the string from the index
new += guess # concatenate the guess string to whatever is in new
else:
new += so_far[i] #So new now becomes - in the first iteration
so_far = new #Once the loop ends so_far should look like ----O-



Am I understanding it right? And also... How do you even plan for this sorta thing? The book had an intro on pseudo code but I had never imagined to use a for loop and an if condition in this sort of combination.


It seems like you understand most of it. new += so_far[i] is basically saying "don't update this character in so_far"

I think it's a lot more intuitive to update so_far in place. This does the same thing but you can get rid of new:

for i in range(len(word)):
if guess == word[i]:
so_far[i] = word[i]


How do you plan this sort of thing? To me this is the most intuitive solution, i guess it just comes with experience.

Correct me if I'm wrong, but I think Python strings are immutable - meaning the way he has it so far is the way to go about it ^^ Testing in an interpreter gives:

>>>hello = "HelloWorld!"
>>>hello[2] = "a"
Traceback (most recent call last):
File stdin, line 1, in <module>
TypeError: 'str' object does not support item assignment
Maero
Profile Joined December 2007
349 Posts
Last Edited: 2013-12-21 01:42:30
December 21 2013 01:30 GMT
#8207
Yep. Any operations on a python string must result in a new string. Good illustration Cyx.

Edit: Just to contribute something: One way around this is to turn the string into a list instead, modify an element, and rejoin. e.g.

>>> str = "string"
>>> str = list(str)
>>> str[2] = 'a'
>>> str = ''.join(str)
>>> str
'staing'


But the way in your book is probably just about the same as far as efficiency goes, if not a little better.
Prillan
Profile Joined August 2011
Sweden350 Posts
December 21 2013 17:58 GMT
#8208
On December 21 2013 10:30 Maero wrote:
Yep. Any operations on a python string must result in a new string. Good illustration Cyx.

Edit: Just to contribute something: One way around this is to turn the string into a list instead, modify an element, and rejoin. e.g.

>>> str = "string"
>>> str = list(str)
>>> str[2] = 'a'
>>> str = ''.join(str)
>>> str
'staing'


But the way in your book is probably just about the same as far as efficiency goes, if not a little better.

Please don't use str as a name for a variable as it is a built-in function/type. By assigning a value to it you overwrite its default value which can cause all kinds of problems in a bigger program. You probably know this Maero but it might be worth to point it out to people learning Python.
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Isualin
Profile Joined March 2011
Germany1903 Posts
December 21 2013 18:09 GMT
#8209
I am trying to write a program to crack zip passwords in c/c++ with mpi using brute force. I know how to distribute the work through mpi. There are a few libraries to unzip files like minizip, libzip etc. I will try to unzip the file using them with for loops and incrementing passwords in each process with different starting points, But... this seems really inefficient. Can anyone give me pointers?
| INnoVation | The literal god TY | ByuNjwa | LRSL when? |
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
December 22 2013 02:56 GMT
#8210
Hello TL! I have started trying to create a TicTacToe game and ran into a problem with the graphics. Currently I can create the window and the background I like using fillRect to fill the background blue, and then fillRect to fill each square black, leaving blue bars in between. However, I would like help adding in something that redraws/draws over what exists when I click on the window. The graphics documentation is confusing the hell out of me. There is probably 1 call that needs to be made to do this, but I've trawled through a bunch of SO questions and the documentation and nothing has shown up.

My code is:

+ Show Spoiler +
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JFrame;

public class GraphicsStart extends JFrame implements MouseListener{
private static final long serialVersionUID = 1L;
final int boardDimensions = 600;//Pixel dimensions of the square board.
final int xDivisions = 3;//Brackets of each dimension.
final int yDivisions = 3;
final int frameWidth = 5;//Width of frame in pixels. Occurs on both sides, so double.

public GraphicsStart(){
setTitle("TicTacToe - Graeme Cliffe");
setSize(boardDimensions,boardDimensions);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
addMouseListener(this);
}

public void paint(Graphics g){
g.setColor(Color.BLUE);
g.fillRect(0, 0, boardDimensions, boardDimensions);//Creates the background.
g.setColor(Color.BLACK);
for (int xInc = 0; xInc < xDivisions; xInc++){//Increments through the Xs
for (int yInc = 0; yInc <yDivisions; yInc++){
g.fillRect(xInc*(boardDimensions/xDivisions), yInc*(boardDimensions/yDivisions),
xInc + (boardDimensions/xDivisions)-frameWidth, yInc +(boardDimensions/yDivisions)-frameWidth);
//Each box is 195x195, and there are currently 9 of them.
}
}

}

public void mouseClicked(MouseEvent e){
//This is where the magic should happen but what should be called? Ideally I would draw over the old image with some new rectangle.
int xClick = e.getX();
int yClick = e.getY();
repaint();
}

public static void main(String args[]) {
GraphicsStart demo = new GraphicsStart();
}

@Override
public void mouseEntered(MouseEvent arg0) {

}

@Override
public void mouseExited(MouseEvent arg0) {

}

@Override
public void mousePressed(MouseEvent arg0) {

}

@Override
public void mouseReleased(MouseEvent arg0) {

}


}
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
betaflame
Profile Joined November 2010
175 Posts
December 22 2013 06:40 GMT
#8211
On December 22 2013 03:09 Isualin wrote:
I am trying to write a program to crack zip passwords in c/c++ with mpi using brute force. I know how to distribute the work through mpi. There are a few libraries to unzip files like minizip, libzip etc. I will try to unzip the file using them with for loops and incrementing passwords in each process with different starting points, But... this seems really inefficient. Can anyone give me pointers?


Well, given that you are trying to crack the password with brute force, I can't imagine there would be an "efficient" method of brute forcing since brute forcing is by nature inefficient.
aksfjh
Profile Joined November 2010
United States4853 Posts
December 22 2013 07:16 GMT
#8212
On December 22 2013 15:40 betaflame wrote:
Show nested quote +
On December 22 2013 03:09 Isualin wrote:
I am trying to write a program to crack zip passwords in c/c++ with mpi using brute force. I know how to distribute the work through mpi. There are a few libraries to unzip files like minizip, libzip etc. I will try to unzip the file using them with for loops and incrementing passwords in each process with different starting points, But... this seems really inefficient. Can anyone give me pointers?


Well, given that you are trying to crack the password with brute force, I can't imagine there would be an "efficient" method of brute forcing since brute forcing is by nature inefficient.

Not entirely. Brute forcing just means blind guessing, iterating through all options. There are still ways to be efficient.

Onto a problem I'm having, anybody know of a good way to create a string based on Perl regex embedded into a normal string? Tried String::Random, but it only creates a string if the input is solely regex.
xboi209
Profile Blog Joined June 2011
United States1173 Posts
Last Edited: 2013-12-22 08:09:40
December 22 2013 07:31 GMT
#8213
Nvm
http://www.reddit.com/r/broodwar/
bangsholt
Profile Joined June 2011
Denmark138 Posts
December 22 2013 09:15 GMT
#8214
On December 22 2013 11:56 WarSame wrote:
Hello TL! I have started trying to create a TicTacToe game and ran into a problem with the graphics. Currently I can create the window and the background I like using fillRect to fill the background blue, and then fillRect to fill each square black, leaving blue bars in between. However, I would like help adding in something that redraws/draws over what exists when I click on the window. The graphics documentation is confusing the hell out of me. There is probably 1 call that needs to be made to do this, but I've trawled through a bunch of SO questions and the documentation and nothing has shown up.

My code is:

+ Show Spoiler +
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JFrame;

public class GraphicsStart extends JFrame implements MouseListener{
private static final long serialVersionUID = 1L;
final int boardDimensions = 600;//Pixel dimensions of the square board.
final int xDivisions = 3;//Brackets of each dimension.
final int yDivisions = 3;
final int frameWidth = 5;//Width of frame in pixels. Occurs on both sides, so double.

public GraphicsStart(){
setTitle("TicTacToe - Graeme Cliffe");
setSize(boardDimensions,boardDimensions);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
addMouseListener(this);
}

public void paint(Graphics g){
g.setColor(Color.BLUE);
g.fillRect(0, 0, boardDimensions, boardDimensions);//Creates the background.
g.setColor(Color.BLACK);
for (int xInc = 0; xInc < xDivisions; xInc++){//Increments through the Xs
for (int yInc = 0; yInc <yDivisions; yInc++){
g.fillRect(xInc*(boardDimensions/xDivisions), yInc*(boardDimensions/yDivisions),
xInc + (boardDimensions/xDivisions)-frameWidth, yInc +(boardDimensions/yDivisions)-frameWidth);
//Each box is 195x195, and there are currently 9 of them.
}
}

}

public void mouseClicked(MouseEvent e){
//This is where the magic should happen but what should be called? Ideally I would draw over the old image with some new rectangle.
int xClick = e.getX();
int yClick = e.getY();
repaint();
}

public static void main(String args[]) {
GraphicsStart demo = new GraphicsStart();
}

@Override
public void mouseEntered(MouseEvent arg0) {

}

@Override
public void mouseExited(MouseEvent arg0) {

}

@Override
public void mousePressed(MouseEvent arg0) {

}

@Override
public void mouseReleased(MouseEvent arg0) {

}


}


It's "simple"

First you need to figure out which square you are in, then you draw exactly like before, just with a new color
FakePseudo
Profile Joined January 2012
Belgium716 Posts
December 22 2013 11:33 GMT
#8215
On December 21 2013 10:30 Maero wrote:
Yep. Any operations on a python string must result in a new string. Good illustration Cyx.

Edit: Just to contribute something: One way around this is to turn the string into a list instead, modify an element, and rejoin. e.g.

>>> str = "string"
>>> str = list(str)
>>> str[2] = 'a'
>>> str = ''.join(str)
>>> str
'staing'


But the way in your book is probably just about the same as far as efficiency goes, if not a little better.


How about:
newString=oldString[:2]+"a"+oldString[3:]

I am the 0.0007% /forum/viewpost.php?post_id=17208334|| Big Black Women Vocals Is Like Porn to my Ears ||San Antonio Spurs|Boston Celtics||#1EZToss Hater;
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
December 22 2013 17:39 GMT
#8216
On December 22 2013 18:15 bangsholt wrote:
Show nested quote +
On December 22 2013 11:56 WarSame wrote:
Hello TL! I have started trying to create a TicTacToe game and ran into a problem with the graphics. Currently I can create the window and the background I like using fillRect to fill the background blue, and then fillRect to fill each square black, leaving blue bars in between. However, I would like help adding in something that redraws/draws over what exists when I click on the window. The graphics documentation is confusing the hell out of me. There is probably 1 call that needs to be made to do this, but I've trawled through a bunch of SO questions and the documentation and nothing has shown up.

My code is:

+ Show Spoiler +
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JFrame;

public class GraphicsStart extends JFrame implements MouseListener{
private static final long serialVersionUID = 1L;
final int boardDimensions = 600;//Pixel dimensions of the square board.
final int xDivisions = 3;//Brackets of each dimension.
final int yDivisions = 3;
final int frameWidth = 5;//Width of frame in pixels. Occurs on both sides, so double.

public GraphicsStart(){
setTitle("TicTacToe - Graeme Cliffe");
setSize(boardDimensions,boardDimensions);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
addMouseListener(this);
}

public void paint(Graphics g){
g.setColor(Color.BLUE);
g.fillRect(0, 0, boardDimensions, boardDimensions);//Creates the background.
g.setColor(Color.BLACK);
for (int xInc = 0; xInc < xDivisions; xInc++){//Increments through the Xs
for (int yInc = 0; yInc <yDivisions; yInc++){
g.fillRect(xInc*(boardDimensions/xDivisions), yInc*(boardDimensions/yDivisions),
xInc + (boardDimensions/xDivisions)-frameWidth, yInc +(boardDimensions/yDivisions)-frameWidth);
//Each box is 195x195, and there are currently 9 of them.
}
}

}

public void mouseClicked(MouseEvent e){
//This is where the magic should happen but what should be called? Ideally I would draw over the old image with some new rectangle.
int xClick = e.getX();
int yClick = e.getY();
repaint();
}

public static void main(String args[]) {
GraphicsStart demo = new GraphicsStart();
}

@Override
public void mouseEntered(MouseEvent arg0) {

}

@Override
public void mouseExited(MouseEvent arg0) {

}

@Override
public void mousePressed(MouseEvent arg0) {

}

@Override
public void mouseReleased(MouseEvent arg0) {

}


}


It's "simple"

First you need to figure out which square you are in, then you draw exactly like before, just with a new color

Well that's the problem. I can figure out which square was clicked on no problem! But then I have no idea what you are supposed to use to redraw over the old one.

Ideally the pseudocode would be:

public void repaint(){
getOldPaint();
newPaint = combineOldAndNewPaint();
paintOver(newPaint);
}

But I don't know any of those commands in Java's Graphics or Swing and haven't been able to find them through trawling for an hour or 2.

So I decided to switch over to something I saw used in a guide, which was to have a JFrame and JPanel class. Hopefully this works better.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
bangsholt
Profile Joined June 2011
Denmark138 Posts
December 22 2013 17:57 GMT
#8217
On December 23 2013 02:39 WarSame wrote:
Show nested quote +
On December 22 2013 18:15 bangsholt wrote:
On December 22 2013 11:56 WarSame wrote:
Hello TL! I have started trying to create a TicTacToe game and ran into a problem with the graphics. Currently I can create the window and the background I like using fillRect to fill the background blue, and then fillRect to fill each square black, leaving blue bars in between. However, I would like help adding in something that redraws/draws over what exists when I click on the window. The graphics documentation is confusing the hell out of me. There is probably 1 call that needs to be made to do this, but I've trawled through a bunch of SO questions and the documentation and nothing has shown up.

My code is:

+ Show Spoiler +
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JFrame;

public class GraphicsStart extends JFrame implements MouseListener{
private static final long serialVersionUID = 1L;
final int boardDimensions = 600;//Pixel dimensions of the square board.
final int xDivisions = 3;//Brackets of each dimension.
final int yDivisions = 3;
final int frameWidth = 5;//Width of frame in pixels. Occurs on both sides, so double.

public GraphicsStart(){
setTitle("TicTacToe - Graeme Cliffe");
setSize(boardDimensions,boardDimensions);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
addMouseListener(this);
}

public void paint(Graphics g){
g.setColor(Color.BLUE);
g.fillRect(0, 0, boardDimensions, boardDimensions);//Creates the background.
g.setColor(Color.BLACK);
for (int xInc = 0; xInc < xDivisions; xInc++){//Increments through the Xs
for (int yInc = 0; yInc <yDivisions; yInc++){
g.fillRect(xInc*(boardDimensions/xDivisions), yInc*(boardDimensions/yDivisions),
xInc + (boardDimensions/xDivisions)-frameWidth, yInc +(boardDimensions/yDivisions)-frameWidth);
//Each box is 195x195, and there are currently 9 of them.
}
}

}

public void mouseClicked(MouseEvent e){
//This is where the magic should happen but what should be called? Ideally I would draw over the old image with some new rectangle.
int xClick = e.getX();
int yClick = e.getY();
repaint();
}

public static void main(String args[]) {
GraphicsStart demo = new GraphicsStart();
}

@Override
public void mouseEntered(MouseEvent arg0) {

}

@Override
public void mouseExited(MouseEvent arg0) {

}

@Override
public void mousePressed(MouseEvent arg0) {

}

@Override
public void mouseReleased(MouseEvent arg0) {

}


}


It's "simple"

First you need to figure out which square you are in, then you draw exactly like before, just with a new color

Well that's the problem. I can figure out which square was clicked on no problem! But then I have no idea what you are supposed to use to redraw over the old one.

Ideally the pseudocode would be:

public void repaint(){
getOldPaint();
newPaint = combineOldAndNewPaint();
paintOver(newPaint);
}

But I don't know any of those commands in Java's Graphics or Swing and haven't been able to find them through trawling for an hour or 2.

So I decided to switch over to something I saw used in a guide, which was to have a JFrame and JPanel class. Hopefully this works better.


You do exactly the same - you just draw "on top" of the old graphics and it replaces it
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2013-12-22 18:38:33
December 22 2013 18:35 GMT
#8218
repaint just calls the normal paint method. So change that one. Dont implement your own repaint.
You dont paint over something. You clear everything and paint from scratch.

i.e. after your 2 for loops change to another color. And then g.fillRect with the parameters of the clicked box:
g.setColor(Color.RED);
g.fillRect(0*(boardDimensions/xDivisions), 0*(boardDimensions/yDivisions),
0 + (boardDimensions/xDivisions)-frameWidth, 0 +(boardDimensions/yDivisions)-frameWidth);
If the clicked one is the (0,0) one.

You can also do this change in the initial for loops and check if the current one is the one which is clicked and change colors accordingly.
if (xInc == xClicked && yInc == yClicked) g.setColor(Color.RED);
// draw your normal rectangle as before
g.setColor(Color.BLACK);
]343[
Profile Blog Joined May 2008
United States10328 Posts
December 22 2013 19:29 GMT
#8219
I did my first ever TopCoder contest today and got blue!

On the other hand, I failed at coding a binary search (to find the rightmost element strictly less than the query) for like 15 minutes! :D :D
Writer
Maindi
Profile Joined November 2011
Finland104 Posts
December 22 2013 20:01 GMT
#8220
On December 23 2013 02:39 WarSame wrote:
Show nested quote +
On December 22 2013 18:15 bangsholt wrote:
On December 22 2013 11:56 WarSame wrote:
Hello TL! I have started trying to create a TicTacToe game and ran into a problem with the graphics. Currently I can create the window and the background I like using fillRect to fill the background blue, and then fillRect to fill each square black, leaving blue bars in between. However, I would like help adding in something that redraws/draws over what exists when I click on the window. The graphics documentation is confusing the hell out of me. There is probably 1 call that needs to be made to do this, but I've trawled through a bunch of SO questions and the documentation and nothing has shown up.

My code is:

+ Show Spoiler +
import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import javax.swing.JFrame;

public class GraphicsStart extends JFrame implements MouseListener{
private static final long serialVersionUID = 1L;
final int boardDimensions = 600;//Pixel dimensions of the square board.
final int xDivisions = 3;//Brackets of each dimension.
final int yDivisions = 3;
final int frameWidth = 5;//Width of frame in pixels. Occurs on both sides, so double.

public GraphicsStart(){
setTitle("TicTacToe - Graeme Cliffe");
setSize(boardDimensions,boardDimensions);
setVisible(true);
setDefaultCloseOperation(EXIT_ON_CLOSE);
addMouseListener(this);
}

public void paint(Graphics g){
g.setColor(Color.BLUE);
g.fillRect(0, 0, boardDimensions, boardDimensions);//Creates the background.
g.setColor(Color.BLACK);
for (int xInc = 0; xInc < xDivisions; xInc++){//Increments through the Xs
for (int yInc = 0; yInc <yDivisions; yInc++){
g.fillRect(xInc*(boardDimensions/xDivisions), yInc*(boardDimensions/yDivisions),
xInc + (boardDimensions/xDivisions)-frameWidth, yInc +(boardDimensions/yDivisions)-frameWidth);
//Each box is 195x195, and there are currently 9 of them.
}
}

}

public void mouseClicked(MouseEvent e){
//This is where the magic should happen but what should be called? Ideally I would draw over the old image with some new rectangle.
int xClick = e.getX();
int yClick = e.getY();
repaint();
}

public static void main(String args[]) {
GraphicsStart demo = new GraphicsStart();
}

@Override
public void mouseEntered(MouseEvent arg0) {

}

@Override
public void mouseExited(MouseEvent arg0) {

}

@Override
public void mousePressed(MouseEvent arg0) {

}

@Override
public void mouseReleased(MouseEvent arg0) {

}


}


It's "simple"

First you need to figure out which square you are in, then you draw exactly like before, just with a new color

Well that's the problem. I can figure out which square was clicked on no problem! But then I have no idea what you are supposed to use to redraw over the old one.

Ideally the pseudocode would be:

public void repaint(){
getOldPaint();
newPaint = combineOldAndNewPaint();
paintOver(newPaint);
}

But I don't know any of those commands in Java's Graphics or Swing and haven't been able to find them through trawling for an hour or 2.

So I decided to switch over to something I saw used in a guide, which was to have a JFrame and JPanel class. Hopefully this works better.

Probably an easier and more elegant way to do the game would be creating a grid (for example a two dimensional vector) and do the actual playing there.
Prev 1 409 410 411 412 413 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 4h 17m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 239
ProTech118
StarCraft: Brood War
Horang2 1392
actioN 535
PianO 124
Larva 123
soO 24
NotJumperer 20
Dewaltoss 17
Hm[arnc] 11
Icarus 8
Dota 2
XaKoH 444
League of Legends
JimRising 655
C9.Mang0323
Super Smash Bros
Westballz18
Other Games
summit1g14268
WinterStarcraft548
Happy223
Organizations
Other Games
gamesdonequick756
StarCraft: Brood War
UltimateBattle 90
lovetv 4
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• Berry_CruncH228
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1223
• Stunt494
Upcoming Events
Wardi Open
4h 17m
StarCraft2.fi
9h 17m
Replay Cast
16h 17m
The PondCast
1d 2h
OSC
1d 8h
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
1d 16h
Korean StarCraft League
2 days
CranKy Ducklings
3 days
SC Evo League
3 days
BSL 21
3 days
Sziky vs OyAji
Gypsy vs eOnzErG
[ Show More ]
OSC
3 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
4 days
OSC
4 days
BSL 21
4 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
5 days
Wardi Open
5 days
StarCraft2.fi
5 days
Replay Cast
5 days
StarCraft2.fi
6 days
PiGosaur Monday
6 days
Liquipedia Results

Completed

Proleague 2025-11-30
RSL Revival: Season 3
Light HT

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
Acropolis #4 - TS3
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 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.