• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:49
CEST 03:49
KST 10:49
  • 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
Code S Season 1 - RO8 Preview0[ASL21] Ro8 Preview Pt2: Progenitors8Code S Season 1 - RO12 Group A: Rogue, Percival, Solar, Zoun13[ASL21] Ro8 Preview Pt1: Inheritors16[ASL21] Ro16 Preview Pt2: All Star10
Community News
Weekly Cups (April 27-May 4): Clem takes triple0RSL Revival: Season 5 - Qualifiers and Main Event11Code S Season 1 (2026) - RO12 Results12026 GSL Season 1 Qualifiers25Maestros of the Game 2 announced9
StarCraft 2
General
Code S Season 1 - RO8 Preview Behind the Blue - Team Liquid History Book Weekly Cups (April 27-May 4): Clem takes triple Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool Code S Season 1 (2026) - RO12 Results
Tourneys
GSL Code S Season 1 (2026) Sparkling Tuna Cup - Weekly Open Tournament RSL Revival: Season 5 - Qualifiers and Main Event StarCraft Evolution League (SC Evo Biweekly) 2026 GSL Season 2 Qualifiers
Strategy
Custom Maps
[D]RTS in all its shapes and glory <3 [A] Nemrods 1/4 players [M] (2) Frigid Storage
External Content
Mutation # 524 Death and Taxes The PondCast: SC2 News & Results Mutation # 523 Firewall Mutation # 522 Flip My Base
Brood War
General
BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ Do we have a pimpest plays list? AI Question ASL21 General Discussion
Tourneys
[ASL21] Ro8 Day 4 [Megathread] Daily Proleagues [ASL21] Ro8 Day 3 [ASL21] Ro8 Day 2
Strategy
Simple Questions, Simple Answers Fighting Spirit mining rates What's the deal with APM & what's its true value Any training maps people recommend?
Other Games
General Games
Stormgate/Frost Giant Megathread Dawn of War IV OutLive 25 (RTS Game) Daigo vs Menard Best of 10 Nintendo Switch Thread
Dota 2
The Story of Wings Gaming
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread European Politico-economics QA Mega-thread Russo-Ukrainian War Thread 3D technology/software discussion Canadian Politics Mega-thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [Req][Books] Good Fantasy/SciFi books
Sports
2024 - 2026 Football Thread Formula 1 Discussion McBoner: A hockey love story
World Cup 2022
Tech Support
streaming software Strange computer issues (software) [G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Movie Stars In Video Games: …
TrAiDoS
ramps on octagon
StaticNine
Broowar part 2
qwaykee
Funny Nicknames
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1466 users

The Big Programming Thread - Page 278

Forum Index > General Forum
Post a Reply
Prev 1 276 277 278 279 280 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.
POiNTx
Profile Joined July 2010
Belgium309 Posts
March 28 2013 18:10 GMT
#5541
On March 29 2013 02:27 darkness wrote:
By code convention, the correct try-catch should look like:


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


However, I think this is more readable:


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


Sure, they may want to emphasise that catch is "part of" try{}, but it looks better if it's on a new line imho. Comments?

Source: http://www.oracle.com/technetwork/java/codeconventions-150003.pdf (7.9)



I like your style more than the first one. I even prefer:


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


I think that is even more readable.
Fuck yeah serotonin
ZenithM
Profile Joined February 2011
France15952 Posts
Last Edited: 2013-03-28 18:22:52
March 28 2013 18:18 GMT
#5542
On March 29 2013 03:10 POiNTx wrote:
Show nested quote +
On March 29 2013 02:27 darkness wrote:
By code convention, the correct try-catch should look like:


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


However, I think this is more readable:


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


Sure, they may want to emphasise that catch is "part of" try{}, but it looks better if it's on a new line imho. Comments?

Source: http://www.oracle.com/technetwork/java/codeconventions-150003.pdf (7.9)



I like your style more than the first one. I even prefer:


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... :'(
Shenghi
Profile Joined August 2010
167 Posts
Last Edited: 2013-03-28 19:07:35
March 28 2013 19:07 GMT
#5543
Wars have been fought over brace styles. To each their own, the most important part is that a code base uses a consistent style.

Having said that, there is only One True Brace Style.
People are not born stupid, they choose to be stupid. If you made that choice, please change your mind.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
March 28 2013 21:01 GMT
#5544
Personally, I do this a lot.

try
{
statements;
}
catch (ExceptionClass e)
{
//TODO add catch statements never
}

I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
ZenithM
Profile Joined February 2011
France15952 Posts
March 28 2013 21:12 GMT
#5545
On March 29 2013 06:01 obesechicken13 wrote:
Personally, I do this a lot.

try
{
statements;
}
catch (ExceptionClass e)
{
//TODO add catch statements never
}


LOL.
As do we all, my friend.
Frigo
Profile Joined August 2009
Hungary1023 Posts
March 28 2013 21:47 GMT
#5546
try {
ugly method call throwing checked exception
}catch( Exception e ){
rethrow(e);
}


Where rethrow(Exception e) is an ugly nice hack exploiting type erasure to be able to throw checked exception without actually declaring them in a throws exception.

Much much better than swallowing it, which is plain disgusting, or rethrowing it as RuntimeException, which you can't catch properly at higher levels.
http://www.fimfiction.net/user/Treasure_Chest
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
March 28 2013 22:00 GMT
#5547
On March 29 2013 06:47 Frigo wrote:
try {
ugly method call throwing checked exception
}catch( Exception e ){
rethrow(e);
}


Where rethrow(Exception e) is an ugly nice hack exploiting type erasure to be able to throw checked exception without actually declaring them in a throws exception.

Much much better than swallowing it, which is plain disgusting, or rethrowing it as RuntimeException, which you can't catch properly at higher levels.


Exception structures may be ugly/hackish and difficult to use effectively, but I just think of the alternatives and shudder.

HealthMonitors and run-time error checking are kind of a bust. I often just let my kernel panic and core dump than have to deal with a health monitor. Easier to debug (lol).
Any sufficiently advanced technology is indistinguishable from magic
Frigo
Profile Joined August 2009
Hungary1023 Posts
Last Edited: 2013-03-28 22:28:34
March 28 2013 22:23 GMT
#5548
On March 29 2013 07:00 RoyGBiv_13 wrote:
Show nested quote +
On March 29 2013 06:47 Frigo wrote:
try {
ugly method call throwing checked exception
}catch( Exception e ){
rethrow(e);
}


Where rethrow(Exception e) is an ugly nice hack exploiting type erasure to be able to throw checked exception without actually declaring them in a throws exception.

Much much better than swallowing it, which is plain disgusting, or rethrowing it as RuntimeException, which you can't catch properly at higher levels.


Exception structures may be ugly/hackish and difficult to use effectively, but I just think of the alternatives and shudder.

HealthMonitors and run-time error checking are kind of a bust. I often just let my kernel panic and core dump than have to deal with a health monitor. Easier to debug (lol).


The problem is not with exceptions, but with checked exceptions. Like a lot of things with programming, they sound much better in theory than they actually appear in practice. I've lost count the times I've seen them abused in actual production code.

"Handling" them like these is not suboptimal use, it's a recipe for disaster:

try{
whatever();
}catch( InterruptedException e ){
// trololo do nothing, let other threads suffer
}catch( IOException e ){
logger.log("This isn't actually proper handling");
}catch( NoMessageInThisException e ){
throw new RuntimeException("Mwahahaha, no stacktrace for you: " + e.getMessage());
}catch( NumberFormatException e ){
throw new RuntimeException("You won't catch me, hahaha!", e);
}catch( SomeCommonException e ){
e.printStacktrace();
// trololo we don't actually log stdout or stderr
}catch( YetAnotherExceptionBecauseThereAreNotEnoughCatchClauses e ){
some;
complicated;
error;
handling;
just to;
make the code unreadable;
}
// no finally block whatsoever, we don't need releasing any resources after all


The only reasonable explanation I have found for the existence of checked exceptions, is that they designed them to be alternative return values for a method. Every other explanation is smoke and mirrors.
http://www.fimfiction.net/user/Treasure_Chest
Craton
Profile Blog Joined December 2009
United States17281 Posts
March 28 2013 22:32 GMT
#5549
I like you Frigo.
twitch.tv/cratonz
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2013-03-28 22:45:22
March 28 2013 22:44 GMT
#5550
On March 29 2013 07:23 Frigo wrote:
Show nested quote +
On March 29 2013 07:00 RoyGBiv_13 wrote:
On March 29 2013 06:47 Frigo wrote:
try {
ugly method call throwing checked exception
}catch( Exception e ){
rethrow(e);
}


Where rethrow(Exception e) is an ugly nice hack exploiting type erasure to be able to throw checked exception without actually declaring them in a throws exception.

Much much better than swallowing it, which is plain disgusting, or rethrowing it as RuntimeException, which you can't catch properly at higher levels.


Exception structures may be ugly/hackish and difficult to use effectively, but I just think of the alternatives and shudder.

HealthMonitors and run-time error checking are kind of a bust. I often just let my kernel panic and core dump than have to deal with a health monitor. Easier to debug (lol).


The problem is not with exceptions, but with checked exceptions. Like a lot of things with programming, they sound much better in theory than they actually appear in practice. I've lost count the times I've seen them abused in actual production code.

"Handling" them like these is not suboptimal use, it's a recipe for disaster:

try{
whatever();
}catch( InterruptedException e ){
// trololo do nothing, let other threads suffer
}catch( IOException e ){
logger.log("This isn't actually proper handling");
}catch( NoMessageInThisException e ){
throw new RuntimeException("Mwahahaha, no stacktrace for you: " + e.getMessage());
}catch( NumberFormatException e ){
throw new RuntimeException("You won't catch me, hahaha!", e);
}catch( SomeCommonException e ){
e.printStacktrace();
// trololo we don't actually log stdout or stderr
}catch( YetAnotherExceptionBecauseThereAreNotEnoughCatchClauses e ){
some;
complicated;
error;
handling;
just to;
make the code unreadable;
}
// no finally block whatsoever, we don't need releasing any resources after all


The only reasonable explanation I have found for the existence of checked exceptions, is that they designed them to be alternative return values for a method. Every other explanation is smoke and mirrors.


The explanation isn't smoke and mirrors, (checked) exceptions exist to guarantee certain invariants in the code. But like every code structure, when misused it sucks. I guess the grass is greener...




+ Show Spoiler +
If you think that code snippet is bad. To write a Health Monitor for one of my (customer's)programs, I had to write a monitor at the task-level, application-level, and system-level just to catch one exception. Instead of horrible ugly code for each dangerous function call, you have horribly ugly code which does voodoo XFrame magic and virtual-to-physical page mapping just to get the stack frame present. This code has to be rewritten in every abstracted layer of the program. The worst part of it all is that in systems where a health monitor actually *is* a good idea, the most common problems are in the drivers which the health monitor can't detect.+ Show Spoiler +
So complain all you want that handling exceptions sucks ass, because writing code to generate them is like the dyson colon vacuum or ass sucking
Any sufficiently advanced technology is indistinguishable from magic
Nausea
Profile Joined October 2010
Sweden807 Posts
March 29 2013 11:23 GMT
#5551
Hey

So I am working on a noob version of a UI system with windows you can move around (written in c++ with SDL). Now that part works. I store every window in a vector and then when the left mouse button is pressed I go through the vector and check if it's inside any of the windows. Now this is the part where I get stuck.

It is impossible for me to figure out how not to be able to select a window behind the one in front because I have at no point the ability to make sure that the one I'm inside is the "focused" one, because I can never set which one is the focused one since I might be inside two windows at the same time. And if i click where I am inside two windows, the one after the other in the list will be the one that gets picked.

If someone could lend some advice that would be great. :/
Thanks
Set it ablaze!
ddengster
Profile Blog Joined January 2009
Singapore129 Posts
March 29 2013 11:34 GMT
#5552
On March 29 2013 20:23 Nausea wrote:
Hey

So I am working on a noob version of a UI system with windows you can move around (written in c++ with SDL). Now that part works. I store every window in a vector and then when the left mouse button is pressed I go through the vector and check if it's inside any of the windows. Now this is the part where I get stuck.

It is impossible for me to figure out how not to be able to select a window behind the one in front because I have at no point the ability to make sure that the one I'm inside is the "focused" one, because I can never set which one is the focused one since I might be inside two windows at the same time. And if i click where I am inside two windows, the one after the other in the list will be the one that gets picked.

If someone could lend some advice that would be great. :/
Thanks


Add a layering (ie. z-order) system. Each window has a integer layer attribute, and the larger the number the more 'on-top' it is. And the window you'd be clicking is the topmost one.
Check out NEO Impossible Bosses, RTS-MOBA boss rush at http://neoimpossiblebosses.coder-ddeng.com
Nausea
Profile Joined October 2010
Sweden807 Posts
Last Edited: 2013-03-29 12:02:06
March 29 2013 11:59 GMT
#5553
On March 29 2013 20:34 ddengster wrote:
Show nested quote +
On March 29 2013 20:23 Nausea wrote:
Hey

So I am working on a noob version of a UI system with windows you can move around (written in c++ with SDL). Now that part works. I store every window in a vector and then when the left mouse button is pressed I go through the vector and check if it's inside any of the windows. Now this is the part where I get stuck.

It is impossible for me to figure out how not to be able to select a window behind the one in front because I have at no point the ability to make sure that the one I'm inside is the "focused" one, because I can never set which one is the focused one since I might be inside two windows at the same time. And if i click where I am inside two windows, the one after the other in the list will be the one that gets picked.

If someone could lend some advice that would be great. :/
Thanks


Add a layering (ie. z-order) system. Each window has a integer layer attribute, and the larger the number the more 'on-top' it is. And the window you'd be clicking is the topmost one.


When would I set these? I mean, if I would set the one I'm clicking on as the top then if that window is over another window at the time, would that not lead to both of those being set to the top?
And I don't understand where I would get the chance to set the other windows z to adjust to the top one. :/

example:
One window is the top one, I then drop that and pick another window and set it to the top one. How will I be able to set the last top window to a higher z at that point.
Set it ablaze!
ddengster
Profile Blog Joined January 2009
Singapore129 Posts
March 29 2013 12:11 GMT
#5554
On March 29 2013 20:59 Nausea wrote:
Show nested quote +
On March 29 2013 20:34 ddengster wrote:
On March 29 2013 20:23 Nausea wrote:
Hey

So I am working on a noob version of a UI system with windows you can move around (written in c++ with SDL). Now that part works. I store every window in a vector and then when the left mouse button is pressed I go through the vector and check if it's inside any of the windows. Now this is the part where I get stuck.

It is impossible for me to figure out how not to be able to select a window behind the one in front because I have at no point the ability to make sure that the one I'm inside is the "focused" one, because I can never set which one is the focused one since I might be inside two windows at the same time. And if i click where I am inside two windows, the one after the other in the list will be the one that gets picked.

If someone could lend some advice that would be great. :/
Thanks


Add a layering (ie. z-order) system. Each window has a integer layer attribute, and the larger the number the more 'on-top' it is. And the window you'd be clicking is the topmost one.


When would I set these? I mean, if I would set the one I'm clicking on as the top then if that window is over another window at the time, would that not lead to both of those being set to the top?
And I don't understand where I would get the chance to set the other windows z to adjust to the top one. :/


Initially, you'd want to make sure to have a rule that each window has a specific z-layer when you create them. Assuming you're trying to simulate the way windows in windows(nice pun) works, you set the layer to the largest unoccupied z-layer value when you create it. That way, when you click on an area where 2 windows intersect, they're guaranteed to have unique z-layers, and you just get the one with the largest z-layer.

Anyway, these rules are really up to you to define, don't take my word for it and apply it to everything else; you can adjust these things for your needs.
Check out NEO Impossible Bosses, RTS-MOBA boss rush at http://neoimpossiblebosses.coder-ddeng.com
ddengster
Profile Blog Joined January 2009
Singapore129 Posts
March 29 2013 12:17 GMT
#5555
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.
Check out NEO Impossible Bosses, RTS-MOBA boss rush at http://neoimpossiblebosses.coder-ddeng.com
Nausea
Profile Joined October 2010
Sweden807 Posts
March 29 2013 13:51 GMT
#5556
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."
Set it ablaze!
AmericanUmlaut
Profile Blog Joined November 2010
Germany2594 Posts
Last Edited: 2013-03-29 15:16:44
March 29 2013 15:14 GMT
#5557
Does anyone in here have any experience writing Firefox plug-ins? I'm completely lost. I've got a plugin that will alert "hi" when a menu item is clicked, and I've read through the XUL School tutorial, which explains how to create and configure a plugin, but I can't figure out how to interact with the current document in even the most basic way, or how to get debugging to work on Javascript in the plug-in. The tutorial says Venkman will do it, but the tutorial is quite old and as near as I can tell the way it claims debugging can be done is no longer possible.

Anyone think they could help me out? I'd be thrilled if I could even get as far as getting a reference to the document object - once I've got that I'm golden.

-- Edit: I finally posted this after being lost for nearly two weeks, then randomly figured out the exact right Google search to get the information I wanted. From the context of an extension, the currently loaded document is content.document, not window.document.
The frumious Bandersnatch
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-03-29 22:12:28
March 29 2013 20:56 GMT
#5558
I'm interested in learning the OOP part of C++, but I'd rather not spend money right now. I think I'd settle with some basic/medium knowledge and getting comfortable with the language. However, I'm not sure which tutorial is for me.

http://www.cplusplus.com/doc/tutorial/

Is this one alright? I already have some C knowledge, and more on Java too.

Edit: Something unrelated (CSS):

http://i.imgur.com/Q3cUg29.gif
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
March 29 2013 22:42 GMT
#5559
On March 30 2013 05:56 darkness wrote:
I'm interested in learning the OOP part of C++, but I'd rather not spend money right now. I think I'd settle with some basic/medium knowledge and getting comfortable with the language. However, I'm not sure which tutorial is for me.

http://www.cplusplus.com/doc/tutorial/

Is this one alright? I already have some C knowledge, and more on Java too.

Edit: Something unrelated (CSS):

http://i.imgur.com/Q3cUg29.gif

Try C++ Primer Plus 5th edition. Pretty easy to find copies for free around the internet.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
March 29 2013 22:54 GMT
#5560
On March 30 2013 07:42 CecilSunkure wrote:
Show nested quote +
On March 30 2013 05:56 darkness wrote:
I'm interested in learning the OOP part of C++, but I'd rather not spend money right now. I think I'd settle with some basic/medium knowledge and getting comfortable with the language. However, I'm not sure which tutorial is for me.

http://www.cplusplus.com/doc/tutorial/

Is this one alright? I already have some C knowledge, and more on Java too.

Edit: Something unrelated (CSS):

http://i.imgur.com/Q3cUg29.gif

Try C++ Primer Plus 5th edition. Pretty easy to find copies for free around the internet.


I've found it. Thanks.
Prev 1 276 277 278 279 280 1032 Next
Please log in or register to reply.
Live Events Refresh
PiGosaur Cup
00:00
#80 (TLMC 22 Edition)
PiGStarcraft540
CranKy Ducklings56
EnkiAlexander 43
davetesta34
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft540
RuFF_SC2 142
CosmosSc2 32
StarCraft: Brood War
GuemChi 6241
Artosis 641
910 47
NaDa 24
Moletrap 11
Dota 2
monkeys_forever639
League of Legends
Doublelift4799
JimRising 696
Super Smash Bros
Mew2King71
Other Games
summit1g7333
tarik_tv6126
C9.Mang0552
ViBE30
Organizations
Other Games
gamesdonequick1080
BasetradeTV464
Dota 2
PGL Dota 2 - Main Stream37
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
[ Show 14 non-featured ]
StarCraft 2
• Hupsaiya 74
• CranKy Ducklings SOOP7
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• RayReign 29
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Other Games
• Scarra1098
Upcoming Events
GSL
7h 42m
Classic vs Cure
Maru vs Rogue
GSL
1d 7h
SHIN vs Zoun
ByuN vs herO
OSC
1d 9h
OSC
1d 11h
Replay Cast
1d 22h
Escore
2 days
The PondCast
2 days
WardiTV Invitational
2 days
Zoun vs Ryung
Lambo vs ShoWTimE
OSC
2 days
Replay Cast
2 days
[ Show More ]
CranKy Ducklings
3 days
RSL Revival
3 days
SHIN vs Bunny
ByuN vs Shameless
WardiTV Invitational
3 days
Krystianer vs TriGGeR
Cure vs Rogue
uThermal 2v2 Circuit
3 days
BSL
3 days
Replay Cast
3 days
Sparkling Tuna Cup
4 days
RSL Revival
4 days
Cure vs Zoun
Clem vs Lambo
WardiTV Invitational
4 days
BSL
4 days
GSL
5 days
Afreeca Starleague
5 days
Monday Night Weeklies
5 days
Afreeca Starleague
6 days
CranKy Ducklings
6 days
Liquipedia Results

Completed

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

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
IPSL Spring 2026
KCM Race Survival 2026 Season 2
Acropolis #4
YSL S3
SCTL 2026 Spring
RSL Revival: Season 5
2026 GSL S1
BLAST Rivals Spring 2026
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026

Upcoming

Escore Tournament S2: W6
KK 2v2 League Season 1
BSL 22 Non-Korean Championship
Escore Tournament S2: W7
Escore Tournament S2: W8
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
Maestros of the Game 2
2026 GSL S2
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 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.