• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 19:39
CEST 01:39
KST 08:39
  • 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] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy18ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book20
Community News
$5,000 WardiTV TLMC tournament - Presented by Monster Energy2GSL CK: More events planned pending crowdfunding3Weekly Cups (May 30-Apr 5): herO, Clem, SHIN win0[BSL22] RO32 Group Stage4Weekly Cups (March 23-29): herO takes triple6
StarCraft 2
General
Quebec Clan still alive ? Best Time to Book Blue Mountains Private Tours for BGE Stara Zagora 2026 cancelled Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Weekly Cups (May 30-Apr 5): herO, Clem, SHIN win
Tourneys
GSL CK: More events planned pending crowdfunding $5,000 WardiTV TLMC tournament - Presented by Monster Energy Sparkling Tuna Cup - Weekly Open Tournament RSL Season 4 announced for March-April Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power Mutation # 518 Radiation Zone
Brood War
General
ASL21 General Discussion so ive been playing broodwar for a week straight. Gypsy to Korea Pros React To: JaeDong vs Queen [BSL22] RO32 Group Stage
Tourneys
[Megathread] Daily Proleagues [BSL22] RO32 Group B - Sunday 21:00 CEST [BSL22] RO32 Group A - Saturday 21:00 CEST 🌍 Weekly Foreign Showmatches
Strategy
Muta micro map competition Fighting Spirit mining rates What's the deal with APM & what's its true value Simple Questions, Simple Answers
Other Games
General Games
Stormgate/Frost Giant Megathread Starcraft Tabletop Miniature Game General RTS Discussion Thread Nintendo Switch Thread Darkest Dungeon
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
League of Legends
G2 just beat GenG in First stand
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 Five o'clock TL Mafia
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Trading/Investing Thread Things Aren’t Peaceful in Palestine European Politico-economics QA Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT] Tokyo Olympics 2021 Thread General nutrition recommendations
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Loot Boxes—Emotions, And Why…
TrAiDoS
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
ASL S21 English Commentary…
namkraft
StarCraft improvement
iopq
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2493 users

The Big Programming Thread - Page 337

Forum Index > General Forum
Post a Reply
Prev 1 335 336 337 338 339 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.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
August 08 2013 02:54 GMT
#6721
Oh yeah that's totally a typo, I just typed it on the spot. Sorry about that.
Millitron
Profile Blog Joined August 2010
United States2611 Posts
Last Edited: 2013-08-08 04:17:07
August 08 2013 04:16 GMT
#6722
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.
Who called in the fleet?
JeanLuc
Profile Joined September 2010
Canada377 Posts
August 08 2013 04:29 GMT
#6723
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


See if you can draw something to the image in the simplest way possible, then work outwards from there.
If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
Millitron
Profile Blog Joined August 2010
United States2611 Posts
August 08 2013 04:34 GMT
#6724
On August 08 2013 13:29 JeanLuc wrote:
Show nested quote +
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


See if you can draw something to the image in the simplest way possible, then work outwards from there.

I have. I can't change a single pixel. If I println one of the BufferedImage's pixels, I can see that I AM changing the pixel color in the BufferedImage, I just can't seem to get the file to reflect that change.
Who called in the fleet?
JeanLuc
Profile Joined September 2010
Canada377 Posts
August 08 2013 04:38 GMT
#6725
On August 08 2013 13:34 Millitron wrote:
Show nested quote +
On August 08 2013 13:29 JeanLuc wrote:
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


See if you can draw something to the image in the simplest way possible, then work outwards from there.

I have. I can't change a single pixel. If I println one of the BufferedImage's pixels, I can see that I AM changing the pixel color in the BufferedImage, I just can't seem to get the file to reflect that change.


Try looking at this:

http://stackoverflow.com/questions/12674064/how-to-save-a-bufferedimage-as-a-file

If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
Last Edited: 2013-08-08 08:03:32
August 08 2013 05:18 GMT
#6726
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


Unless this isn't your entire code, you're not writing the image to a file. You create an empty .bmp, read it in, then manipulate the image in memory and then... nothing.

Instead, try creating the image object, manipulate it and then write it to a file.

edit: Changing your loops to
for (int i = 10; i < 2000; i += 10)

(and similar for j) will reduce the number of iterations by a factor 100 and allows you to also remove the if-statement, giving an additional small speedup.
Such flammable little insects!
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-08-08 06:48:51
August 08 2013 06:46 GMT
#6727
On August 08 2013 07:37 RoyGBiv_13 wrote:
Show nested quote +
On August 08 2013 06:57 CecilSunkure wrote:
Funny thing about the XOR swap, in some C++ profiling I did a while ago a simple swap function in C++:

template <typename T>
void Swap( T& a, T& b )
{
T c = a;
a = b;
b = c;
}


Was actually significantly more efficient, even with integers, for some reason. The above code must have produced results the compiler knew how to optimize away. The above is also simpler and more flexible than the silly XOR trick.


protip, inline this function... or it could be that the compiler already did so, and that was why it was so fast...

In C++, the inline keyword is just a hint for the compiler. It doesn't enforce anything. Usually it's just ignored. There is __forceinline for in microsoft's compiler which should actually force it (though I wouldn't be too sure about that), and other compilers might have similar language extensions. But in general you can and should just rely on the compiler, especially when it comes to templates.

The inlining for such small templates works really well in solid C++ compilers anyways. I've used much more complicated template code in the inner loop of a simulation program that needs every little bit of performance and got identical performance compared to the copy-and-paste-inlined version (and the copy-and-paste even had minor optimizations depending on the context it was pasted in).
If you have a good reason to disagree with the above, please tell me. Thank you.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
August 08 2013 07:20 GMT
#6728
Really the only thing I use the inline keyword for anymore is to allow particular functions to be defined in the header.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2013-08-08 08:37:24
August 08 2013 08:35 GMT
#6729
use inlining judiciously! ;>

i would inline that swap, but would rather use std::swap (which is inline).
conspired against by a confederacy of dunces.
n0ise
Profile Joined April 2010
3452 Posts
August 08 2013 09:04 GMT
#6730
Starting with Ruby on Rails, coming from java/J2EE/Spring MVC

Any quick tips/pointers or a particular piece worth reading?

Much appreciated
Millitron
Profile Blog Joined August 2010
United States2611 Posts
August 08 2013 18:34 GMT
#6731
On August 08 2013 14:18 Rannasha wrote:
Show nested quote +
On August 08 2013 13:16 Millitron wrote:
Alright, my google-fu has failed me, I'm pretty stumped on this one.

I'm trying to use Java to create a simple coordinate plane in an image file. Basically I want a jpeg that looks like graph paper.

I can't simply grab one off google images because I don't know exactly what size I need yet or how big each grid will be, and I'd like to be able to change these easily.

My current code is as follows:
import java.awt.image.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import java.awt.Color;


public class BlankMapBuilder {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException
{
File mapfile = new File("blankmap.bmp");
BufferedImage image = ImageIO.read(mapfile);
Color c = Color.BLACK;
for (int i = 1; i < 2000; i++)
{
for (int j = 1; j < 2000; j++)
{
if((j % 10 == 0) || (i % 10 == 0))
{
System.out.println("j: " + j + "i: " + i);
image.setRGB(j, i, c.getRGB());
}
}
}
}
}


I've got a blank bitmap image of the right size and name in the package in eclipse, and the print statement triggers exactly as it should. I get no exceptions thrown or anything like that. But the image is still blank after I run the code. "image.setRGB()" doesn't seem to be doing anything.


Unless this isn't your entire code, you're not writing the image to a file. You create an empty .bmp, read it in, then manipulate the image in memory and then... nothing.

Instead, try creating the image object, manipulate it and then write it to a file.

edit: Changing your loops to
for (int i = 10; i < 2000; i += 10)

(and similar for j) will reduce the number of iterations by a factor 100 and allows you to also remove the if-statement, giving an additional small speedup.

Thanks. I got it to work, though I couldn't do your idea for the for-loops. That only colored the corners of every, it did not draw the edges. I don't mind the minor efficiency cost. I doubt the images will ever be much bigger than 2000x2000, and they're not used in anything time-critical.

If anyone's curious, I'm making a simple map-editor tool so my less tech-savvy friends can help make maps for a game we'd like to make.
Who called in the fleet?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
August 09 2013 00:08 GMT
#6732
I have been looking into java generics. I was wondering though, this method prints all elements in an array. However, how does one print N elements? E.g. 2 only instead of the full array. I did some google but everything was about printing from start to end of array.


// generic method printArray
public static < E > void printArray( E[] inputArray )
{
// Display array elements
for ( E element : inputArray ){
System.out.printf( "%s ", element );
}
System.out.println();
}
DeltaX
Profile Joined August 2011
United States287 Posts
August 09 2013 01:01 GMT
#6733

// generic method printArray
int i = 0;
public static < E > void printArray( E[] inputArray )
{
// Display array elements
for ( E element : inputArray ){
System.out.printf( "%s ", element );
}
System.out.println();
i++;
if(i >= 2){
return;
}
}


Would be one way. You could also use the normal for loop for(i = 0; i < 2; i++){stuff} as long as it has at least 2 elements so you don't get null pointer errors.

I think typically you would use your method when you want to iterate over everything in the array, but use a normal for loop if you need them in a specific order, or a specific number of elements.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-08-09 03:02:33
August 09 2013 02:50 GMT
#6734
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.

I tried the normal loop as you said and this one works.


public static < E > void printArray( E[] inputArray )
{
for (int i = 0; i < 2; i++) {
System.out.printf("%s ", inputArray[i]);
}
}


I think elements are printed as strings here. Unfortunately, there's no array boundary checking which reminds me of a question that I want to ask. Is it a good idea to always use try/catch{} when you deal with arrays?

Edit: I think loop condition
int i = 0; i < inputArray.length; i++
is much more readable than
E element : inputArray
which I find in some tutorials. Agree?

I'm reading about generics on this website: http://www.tutorialspoint.com/java/java_generics.htm

Edit #2: The code still works for me when I replace 'E' with 'T'. Now I'm lost at the difference. When do you use T, E, K, V, etc?
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-08-09 03:04:08
August 09 2013 02:59 GMT
#6735
On August 09 2013 11:50 darkness wrote:
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.


Step through the code manually, you should be able to see the error.


On August 09 2013 11:50 darkness wrote:
I think elements are printed as strings here. Unfortunately, there's no array boundary checking which reminds me of a question that I want to ask. Is it a good idea to always use try/catch{} when you deal with arrays?

You should be able to do this without try/catch. try/catch introduces unnecessary overhead here, and makes things harder to read. Just manually do the bounds checking.

Alternatively, you could be using lists instead.


import com.google.common.base.collect.Joiner;

import java.util.List;

static <T> void printUpToN(List<T> stuff, int n) {
if (stuff.size() > n) {
stuff = stuff.subList(0, n);
}
System.out.println(Joiner.on(", ").join(stuff));
}
Who after all is today speaking about the destruction of the Armenians?
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
August 09 2013 03:52 GMT
#6736
On August 09 2013 11:50 darkness wrote:
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.


Two problems here. One, your initializing i as 0 on every single iteration, so it will never increment. Second, you're ending the loop when i < 2...so when i is less than 2.
Average means I'm better than half of you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-08-09 04:45:32
August 09 2013 04:44 GMT
#6737
On August 09 2013 12:52 WolfintheSheep wrote:
Show nested quote +
On August 09 2013 11:50 darkness wrote:
Your code didn't work as I expected when I tried to execute it. I tried to make it like:


for ( E element : inputArray ) {
int i = 0;

System.out.printf( "%s ", element );

i++;

if (i < 2) {
return;
}
}


But it prints only the 1st element. It seems like "E element : inputArray" loop condition doesn't exactly iterate like normal loops we are used to.


Two problems here. One, your initializing i as 0 on every single iteration, so it will never increment. Second, you're ending the loop when i < 2...so when i is less than 2.


Correct! Thanks everyone. I need to turnBrainOn() more often. :D
Ilikestarcraft
Profile Blog Joined November 2004
Korea (South)17733 Posts
August 09 2013 16:08 GMT
#6738
Have a quick question

In this code
while (*s++ = *t++);

I know that its copying a string but what confuses me is how does the loop actually work without what it seems to me a test condition?
ils
"Nana is a goddess. Or at very least, Nana is my goddess." - KazeHydra
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2013-08-09 16:32:12
August 09 2013 16:16 GMT
#6739
int main(int argc, char const *argv[])
{
cout << "\\0: ";
if ('\0') {
cout << "true" << endl;
} else {
cout << "false" << endl;
}
return 0;
}


This prints false.

I believe it will take the last value of the assignment operation, which is the '\0' character in a string, and cast that to a boolean. The boolean cast of the nullchar '\0' is false. For all other characters, casting to an int is treated like a non-zero int, which evaluates to true, so the while loop continues.


edit: If we're talking about C++ strings, I don't think that will work 100% of the time because if the string pointer has gone past the string the behavior is undefined. It might just work because the space after the string is null, but if it's used, something's going to crash.
There is no one like you in the universe.
Yoshi-
Profile Joined October 2008
Germany10227 Posts
August 09 2013 16:18 GMT
#6740
On August 10 2013 01:08 Ilikestarcraft wrote:
Have a quick question

In this code
while (*s++ = *t++);

I know that its copying a string but what confuses me is how does the loop actually work without what it seems to me a test condition?


At one point the pointer *t will not point at anything anymore, this will return some from of NULL, and this most probably gets interpreted as false, and the loop ends
Prev 1 335 336 337 338 339 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 21m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft447
CosmosSc2 44
StarCraft: Brood War
GuemChi 893
Artosis 728
NaDa 15
Dota 2
capcasts110
Counter-Strike
minikerr10
Super Smash Bros
C9.Mang0324
PPMD48
Other Games
summit1g12552
Day[9].tv576
shahzam398
ViBE121
Mew2King41
ROOTCatZ13
Maynarde0
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift3685
• TFBlade919
Other Games
• Scarra952
• imaqtpie829
• Day9tv576
Upcoming Events
CranKy Ducklings
21m
WardiTV Team League
11h 21m
CranKy Ducklings
1d 10h
WardiTV Team League
1d 11h
uThermal 2v2 Circuit
1d 15h
BSL
1d 19h
n0maD vs perroflaco
TerrOr vs ZZZero
MadiNho vs WolFix
DragOn vs LancerX
Sparkling Tuna Cup
2 days
WardiTV Team League
2 days
OSC
2 days
BSL
2 days
Sterling vs Azhi_Dahaki
Napoleon vs Mazur
Jimin vs Nesh
spx vs Strudel
[ Show More ]
Replay Cast
3 days
Replay Cast
3 days
Wardi Open
3 days
GSL
4 days
Replay Cast
5 days
Kung Fu Cup
5 days
Replay Cast
6 days
The PondCast
6 days
Liquipedia Results

Completed

CSL Elite League 2026
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
StarCraft2 Community Team League 2026 Spring
Nations Cup 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026

Upcoming

Escore Tournament S2: W2
IPSL Spring 2026
Escore Tournament S2: W3
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
RSL Revival: Season 5
WardiTV TLMC #16
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 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.