• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 05:41
CEST 11:41
KST 18:41
  • 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
Team TLMC #5 - Finalists & Open Tournaments0[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
BSL 2025 Warsaw LAN + Legends Showmatch0Weekly Cups (Sept 8-14): herO & MaxPax split cups4WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues29
StarCraft 2
General
#1: Maru - Greatest Players of All Time Weekly Cups (Sept 8-14): herO & MaxPax split cups Team Liquid Map Contest #21 - Presented by Monster Energy SpeCial on The Tasteless Podcast Team TLMC #5 - Finalists & Open Tournaments
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris Sparkling Tuna Cup - Weekly Open Tournament SC4ALL $6,000 Open LAN in Philadelphia WardiTV TL Team Map Contest #5 Tournaments RSL: Revival, a new crowdfunded tournament series
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
Soulkey on ASL S20 ASL TICKET LIVE help! :D BW General Discussion NaDa's Body A cwal.gg Extension - Easily keep track of anyone
Tourneys
[ASL20] Ro16 Group D [ASL20] Ro16 Group C [Megathread] Daily Proleagues BSL 2025 Warsaw LAN + Legends Showmatch
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile Borderlands 3 General RTS Discussion Thread
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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Canadian Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread UK Politics Mega-thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
I <=> 9
KrillinFromwales
The Personality of a Spender…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1589 users

The Big Programming Thread - Page 279

Forum Index > General Forum
Post a Reply
Prev 1 277 278 279 280 281 1031 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.
tec27
Profile Blog Joined June 2004
United States3701 Posts
March 30 2013 22:14 GMT
#5561
On March 29 2013 22:51 Nausea wrote:
Show nested quote +
On March 29 2013 21:17 ddengster wrote:
To answer your example, you can change the z-values to some unique value (something which you know you will probably never hit)when you 'drop' it. And you could loop over all the windows for the highest z values and assign the next highest z to the window you want. Or even define a 'highest' z value that the whole UI system follows.


Thank you. I got another answer on gamedev which I think I will try.

"Instead of storing the window pointers in a vector, store them in the list. Mouse testing is then done from top to bottom, and drawing is done from bottom to top. Moving a window to the top requires that the window be removed and added to the front of the list."

You can also just store your windows in a linked list, ordered by last focus. Draw from back to front, test for input from front to back. Whenever you focus a window, remove that window from the linked list and add it back at the head. Should be simpler and faster than checking a bunch of z-value numbers
Can you jam with the console cowboys in cyberspace?
necrosexy
Profile Joined March 2011
451 Posts
March 31 2013 03:08 GMT
#5562
JAVA

i'm trying to average a color from subimages of a bufferedimage.
i'm using the getRGB(int, int, int, int, int[], int, int) method that returns an integer array,
but the array is filled with large negative integers.
How do I use these to average the color?
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-03-31 03:35:42
March 31 2013 03:32 GMT
#5563
This may be of assistance:

http://docs.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html#getRGB(int, int, int, int, int[], int, int)
http://stackoverflow.com/questions/6001211/format-of-type-int-rgb-and-type-int-argb

Recall that an int in java is 32 bits. Look at this like 4 bytes:

10101010 | 10101010 | 10101010 | 10101010

With TYPE_INT_ARBG, you get 4 bytes, a (alpha), r (red), b (blue), g (green) in order. So you get 8 bits of each color, and 8 bits of alpha:

aaaaaaaa | rrrrrrrr | bbbbbbbb | gggggggg

I don't know how you're defining average color, but presumably you want to separate out the r, b, and g portions (dunno if you care about alpha).

You're going to have to learn how to do bit shifting 'n shit for that, unless BufferedImage has helper methods. See if you can dig up helper methods for dealing with TYPE_INT_ARBG. If not, have fun with the >> & bullshit


Also this may be one of those things that gets fucked up on big vs. little endian, but probably not if you're only using java. I think java may be stuck at big endian regardless of your comp's architecture. Perhaps.
Who after all is today speaking about the destruction of the Armenians?
necrosexy
Profile Joined March 2011
451 Posts
Last Edited: 2013-03-31 04:36:25
March 31 2013 04:31 GMT
#5564
On March 31 2013 12:32 phar wrote:
This may be of assistance:

http://docs.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html#getRGB(int, int, int, int, int[], int, int)
http://stackoverflow.com/questions/6001211/format-of-type-int-rgb-and-type-int-argb

Recall that an int in java is 32 bits. Look at this like 4 bytes:

10101010 | 10101010 | 10101010 | 10101010

With TYPE_INT_ARBG, you get 4 bytes, a (alpha), r (red), b (blue), g (green) in order. So you get 8 bits of each color, and 8 bits of alpha:

aaaaaaaa | rrrrrrrr | bbbbbbbb | gggggggg

I don't know how you're defining average color, but presumably you want to separate out the r, b, and g portions (dunno if you care about alpha).

You're going to have to learn how to do bit shifting 'n shit for that, unless BufferedImage has helper methods. See if you can dig up helper methods for dealing with TYPE_INT_ARBG. If not, have fun with the >> & bullshit


Also this may be one of those things that gets fucked up on big vs. little endian, but probably not if you're only using java. I think java may be stuck at big endian regardless of your comp's architecture. Perhaps.

i'm trying to pixelate an image. so i'm trying average the color of each subimage, acting as a huge pixel in the final image.

we haven't gone over bit shifting in class, so i think a solution shouldn't involve that :s

i separated the colors, but how i do converted them back into an rgbarray[] ? i'm using the corresponding setRGB(...) with 6 args

not generalized ...
for(int y = 0; y < height - 54; y += 53) {
for(int x = 0; x < width - 72; x += 71) {

img.getSubimage(x, y, 71, 53).getRGB(
0, 0, 71, 53, samples, 0, 71);

for(int i = 0; i < samples.length - 1; i++) {
colorSum += samples[i];
System.out.println(samples[i]);
}

for(int i = 0; i < samples.length - 1; i++)
Color c = new Color(samples[i]);
int r = c.getRed();
int g = c.getGreen();
int b = c.getBlue();
}
//calculate average of each color ...
pixelated.getSubimage(x, y, 70, 52).setRGB(0, 0,
70, 52, samples, 0, 70);
}
necrosexy
Profile Joined March 2011
451 Posts
Last Edited: 2013-03-31 04:37:42
March 31 2013 04:37 GMT
#5565
dp .
Try
Profile Blog Joined August 2007
United States1293 Posts
March 31 2013 04:44 GMT
#5566
Bit of a stretch to post it here, but anyone on TL at the Chicago Invitational ICPC Programming Contest this Weekend?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-03-31 18:42:18
March 31 2013 18:39 GMT
#5567
Java

When I use socket.getInetAddress(), I usually get this format: /IP
I'd like to change it to only "IP" without the forward slash. Any ideas? I'm currently thinking of override, but how do I know what variable should I use?

E.g.


@override
public String toString() {
return inetAddress;
}


Or do I have to use some kind of string manipulation to get only the IP out of this method getInetAddress()?
JeanLuc
Profile Joined September 2010
Canada377 Posts
Last Edited: 2013-03-31 18:59:40
March 31 2013 18:52 GMT
#5568
On March 31 2013 12:08 necrosexy wrote:
JAVA

i'm trying to average a color from subimages of a bufferedimage.
i'm using the getRGB(int, int, int, int, int[], int, int) method that returns an integer array,
but the array is filled with large negative integers.
How do I use these to average the color?


This isn't java, but it may be of use to you. Basically you can pixelate images on an html5 canvas, or otherwise manipulate the colour values of each pixel. I've seen a bunch of tutorials on this, this is what I found from a google search right now

http://www.html5canvastutorials.com/labs/html5-canvas-pixelated-image-focus/

Hope this helps

Edit: http://html5doctor.com/video-canvas-magic/
If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
necrosexy
Profile Joined March 2011
451 Posts
April 01 2013 00:02 GMT
#5569
On April 01 2013 03:52 JeanLuc wrote:
Show nested quote +
On March 31 2013 12:08 necrosexy wrote:
JAVA

i'm trying to average a color from subimages of a bufferedimage.
i'm using the getRGB(int, int, int, int, int[], int, int) method that returns an integer array,
but the array is filled with large negative integers.
How do I use these to average the color?


This isn't java, but it may be of use to you. Basically you can pixelate images on an html5 canvas, or otherwise manipulate the colour values of each pixel. I've seen a bunch of tutorials on this, this is what I found from a google search right now

http://www.html5canvastutorials.com/labs/html5-canvas-pixelated-image-focus/

Hope this helps

Edit: http://html5doctor.com/video-canvas-magic/

i figured it out. i was on the right track.

[...]
avgR = r / samples.length;
avgG = g / samples.length;
avgB = b / samples.length;

//assign average to samples[]
for(int i = 0; i < samples.length - 1; i++) {
Color c = new Color(avgR, avgG, avgB);
samples[i] = c.getRGB();
}

//set pixels of the average colors from samples[]
//to the blank BufferedImage 'pixelated'
pixelated.getSubimage(x, y, xOffset, yOffset).setRGB(0, 0,
xOffset, yOffset, samples, 0, xOffset);

int r = 0; int g = 0; int b = 0;
}

n0ise
Profile Joined April 2010
3452 Posts
April 01 2013 17:16 GMT
#5570
Anyone here familiar with Eclipse RCP?

Could use a bit of help
Isualin
Profile Joined March 2011
Germany1903 Posts
Last Edited: 2013-04-01 19:36:43
April 01 2013 19:36 GMT
#5571
Anyone tried pythonchallenge? I am at question #5 now and its been fun so far
| INnoVation | The literal god TY | ByuNjwa | LRSL when? |
lannisport
Profile Joined February 2012
878 Posts
April 01 2013 20:56 GMT
#5572
Can anyone recommend any WAMP tutorials or paid classes? I started developing my website locally but couldn't get it to communicate with the Amazon API so I did a nono and just edited my live site. But I landed a project and I want to do it properly so I'm starting with bootstrap (also downloaded sublime text which is awesome).

Also with this site it's not that big so after I develop it on WAMP it'll probably be easy to just ftp the site when it's finished. But in general how do you deploy a larger website or web app? Or what if you need to make adjustments? Do you make every adjustment locally first then upload? Is there some sort of web development framework I can follow?
tofucake
Profile Blog Joined October 2009
Hyrule19087 Posts
April 01 2013 23:01 GMT
#5573
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.
Liquipediaasante sana squash banana
lannisport
Profile Joined February 2012
878 Posts
Last Edited: 2013-04-02 01:08:31
April 02 2013 01:07 GMT
#5574
On April 02 2013 08:01 tofucake wrote:
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.


Thanks for the info. I think I can just make a subdomain on my webhost and just dump the database and all the files onto it. I was looking at Git but it seems pretty complicated (I'm not even good with basic command line) and more powerful than what I really need. But it has just the features I'm looking for. Version control would be nice, speedy cloning would be desirable for quick "pulls and pushes". Having the ability to just download the site off a central server work on it locally and upload it after modifications in a quick and easy manner would be great because I usually have other programmers to do the actual development of parts of the site. Can you recommend an easy one with a GUI (and even a development server/environment)?
AmericanUmlaut
Profile Blog Joined November 2010
Germany2578 Posts
April 02 2013 08:40 GMT
#5575
On April 02 2013 10:07 lannisport wrote:
Show nested quote +
On April 02 2013 08:01 tofucake wrote:
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.


Thanks for the info. I think I can just make a subdomain on my webhost and just dump the database and all the files onto it. I was looking at Git but it seems pretty complicated (I'm not even good with basic command line) and more powerful than what I really need. But it has just the features I'm looking for. Version control would be nice, speedy cloning would be desirable for quick "pulls and pushes". Having the ability to just download the site off a central server work on it locally and upload it after modifications in a quick and easy manner would be great because I usually have other programmers to do the actual development of parts of the site. Can you recommend an easy one with a GUI (and even a development server/environment)?

Git has many GUIs (http://git-scm.com/downloads/guis), and is very easy to use for basic version control. SVN is also good, but not really any easier to use.
The frumious Bandersnatch
althaz
Profile Joined May 2010
Australia1001 Posts
Last Edited: 2013-04-02 10:25:14
April 02 2013 10:24 GMT
#5576
On March 29 2013 03:18 ZenithM wrote:
Show nested quote +
On March 29 2013 03:10 POiNTx wrote:

try
{
statements;
}
catch (ExceptionClass e)
{
statements
}


I think that is even more readable.

This is another well-established coding convention, and what is standard in C# (see Microsoft's guidelines here: http://msdn.microsoft.com/en-us/library/vstudio/ff926074.aspx). But what darkness proposed was a really weird and ugly hybrid form of the Java standard and the C# one :D
As someone said, as long as everybody who works on the same code uses the same conventions that's fine, but it's better to pick up established conventions as your own to begin with.

I personally follow the Oracle Java Code conventions to code in Java and the Microsoft guidelines to code in C#. I believe it's good to be able to follow flexibly whatever convention you have to use in a given situation.

Edit: Damn and it's been such a long time since I've written some C#. I need me some C#
It's so much more cool, fun and powerful than Java... :'(

C# is my language of choice so I also use this format. It's by far (IMO) the most readable. But of course when I am asked (usually this involves force) to use other languages, I use their conventions if I am aware of them.
The first rule we don't talk about race conditions. of race conditions is
lannisport
Profile Joined February 2012
878 Posts
April 02 2013 15:54 GMT
#5577
On April 02 2013 17:40 AmericanUmlaut wrote:
Show nested quote +
On April 02 2013 10:07 lannisport wrote:
On April 02 2013 08:01 tofucake wrote:
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.


Thanks for the info. I think I can just make a subdomain on my webhost and just dump the database and all the files onto it. I was looking at Git but it seems pretty complicated (I'm not even good with basic command line) and more powerful than what I really need. But it has just the features I'm looking for. Version control would be nice, speedy cloning would be desirable for quick "pulls and pushes". Having the ability to just download the site off a central server work on it locally and upload it after modifications in a quick and easy manner would be great because I usually have other programmers to do the actual development of parts of the site. Can you recommend an easy one with a GUI (and even a development server/environment)?

Git has many GUIs (http://git-scm.com/downloads/guis), and is very easy to use for basic version control. SVN is also good, but not really any easier to use.


Thanks for this sir. Sublime text is awesome btw! It's gonna make learning python a whole lot funner.
DMII
Profile Joined September 2011
Germany92 Posts
April 02 2013 18:20 GMT
#5578
I am currently trying to get into the habit of working on something every day, because I think I am a way too lazy person.
The problem with this is, that I want to start small but only get ideas which are a little too big for my taste. However, it also lead to a question, which is less linked to my own problems, but interesting in general. At least for people interested in programming.

What programs should every programmer write at least once in his life?
What kind of functionality should every programmer implement at least once in his life? (Better version I found while writing this post. )

It's kind of like the question about which programming languages every programmer should know, just a little different since it isn't as much about the tools but about their application.
All is fair in love and war. Starcraft is both.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
April 02 2013 18:47 GMT
#5579
On April 03 2013 03:20 DMII wrote:
I am currently trying to get into the habit of working on something every day, because I think I am a way too lazy person.
The problem with this is, that I want to start small but only get ideas which are a little too big for my taste. However, it also lead to a question, which is less linked to my own problems, but interesting in general. At least for people interested in programming.

What programs should every programmer write at least once in his life?
What kind of functionality should every programmer implement at least once in his life? (Better version I found while writing this post. )

It's kind of like the question about which programming languages every programmer should know, just a little different since it isn't as much about the tools but about their application.


I like that attitude

Building something new every day is very difficult. I vaguely remember in the haze of my youth I went through a period where I programmed something new every day. I remember using programming competition problems as fodder, going through them by the pile until I got bored of algorithms.

From there I moved onto bigger projects, thinking of how to create programs which are based on features generated from the algorithms.

Then I went to college, gave up on CS and 'traditional programming', then learned more functional and math scripting as my needs required.

Finally, I'm back at programming, but more on the maintenance side.

Anywho, I got distracted.... If you're still looking into algorithms and implementation details, then find a good programming challenge website (there are dozens for each language). If you are trying to make the jump to features within a larger program, then try to write something like Conway's Game of Life. If you think you're up for the challenge, try to design projects based on your own need, then implement them and deploy them. You win if you can make 1$ from it.


Any sufficiently advanced technology is indistinguishable from magic
CorsairHero
Profile Joined December 2008
Canada9491 Posts
April 03 2013 00:15 GMT
#5580
man...double pointers Anyone going for a C programming job should look them up.
© Current year.
Prev 1 277 278 279 280 281 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 19m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Rex 1
StarCraft: Brood War
Calm 5699
Bisu 731
Hyuk 162
HiyA 96
Hyun 96
sorry 86
ToSsGirL 84
Dewaltoss 82
Pusan 77
Light 74
[ Show more ]
Soma 60
actioN 56
Mini 49
ZerO 32
BeSt 30
Liquid`Ret 29
Nal_rA 28
soO 27
Sharp 24
Rush 19
Free 16
SilentControl 10
Dota 2
singsing1260
XcaliburYe206
boxi98170
League of Legends
JimRising 381
Counter-Strike
olofmeister1583
shoxiejesuss598
allub166
Other Games
XaKoH 143
NeuroSwarm80
Trikslyr15
Organizations
StarCraft: Brood War
lovetv 593
Other Games
gamesdonequick587
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 1
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos1421
• Stunt679
Other Games
• WagamamaTV81
Upcoming Events
RSL Revival
19m
Maru vs Reynor
Cure vs TriGGeR
Rex1
Map Test Tournament
1h 19m
The PondCast
3h 19m
RSL Revival
1d
Zoun vs Classic
Korean StarCraft League
1d 17h
BSL Open LAN 2025 - War…
1d 22h
RSL Revival
2 days
BSL Open LAN 2025 - War…
2 days
RSL Revival
3 days
Online Event
3 days
[ Show More ]
Wardi Open
4 days
Monday Night Weeklies
4 days
Sparkling Tuna Cup
5 days
LiuLi Cup
6 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
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
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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.