• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 05:34
CET 11:34
KST 19:34
  • 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 Revival - 2025 Season Finals Preview8RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12
Community News
Weekly Cups (Jan 5-11): Clem wins big offline, Trigger upsets0$21,000 Rongyi Cup Season 3 announced (Jan 22-Feb 7)12Weekly Cups (Dec 29-Jan 4): Protoss rolls, 2v2 returns7[BSL21] Non-Korean Championship - Starts Jan 103SC2 All-Star Invitational: Jan 17-1822
StarCraft 2
General
SC2 Spotted on the EWC 2026 list? Weekly Cups (Jan 5-11): Clem wins big offline, Trigger upsets Weekly Cups (Dec 29-Jan 4): Protoss rolls, 2v2 returns Spontaneous hotkey change zerg Chinese SC2 server to reopen; live all-star event in Hangzhou
Tourneys
$25,000 Streamerzone StarCraft Pro Series announced $21,000 Rongyi Cup Season 3 announced (Jan 22-Feb 7) WardiTV Winter Cup WardiTV Mondays SC2 AI Tournament 2026
Strategy
Simple Questions Simple Answers
Custom Maps
Map Editor closed ?
External Content
Mutation # 508 Violent Night Mutation # 507 Well Trained Mutation # 506 Warp Zone Mutation # 505 Rise From Ashes
Brood War
General
Potential ASL qualifier breakthroughs? BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion StarCraft & BroodWar Campaign Speedrun Quest Data analysis on 70 million replays
Tourneys
[Megathread] Daily Proleagues [BSL21] Grand Finals - Sunday 21:00 CET [BSL21] Non-Korean Championship - Starts Jan 10 SLON Grand Finals – Season 2
Strategy
Game Theory for Starcraft Simple Questions, Simple Answers Current Meta [G] How to get started on ladder as a new Z player
Other Games
General Games
Beyond All Reason Nintendo Switch Thread Awesome Games Done Quick 2026! Mechabellum Stormgate/Frost Giant Megathread
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
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread European Politico-economics QA Mega-thread Things Aren’t Peaceful in Palestine Trading/Investing Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
Anime Discussion Thread
Sports
2024 - 2026 Football Thread
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List TL+ Announced
Blogs
My 2025 Magic: The Gathering…
DARKING
Physical Exercise (HIIT) Bef…
TrAiDoS
Life Update and thoughts.
FuDDx
How do archons sleep?
8882
James Bond movies ranking - pa…
Topin
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1988 users

The Big Programming Thread - Page 313

Forum Index > General Forum
Post a Reply
Prev 1 311 312 313 314 315 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.
codonbyte
Profile Blog Joined June 2011
United States840 Posts
June 18 2013 19:20 GMT
#6241
On June 13 2013 09:03 waxypants wrote:
Do you have the source for the DLL? If so, are you compiling it as part of your solution? I have only use the C++ editions of VS so I am not sure how much visibility the C# version provides as far as C++ code and disassembly goes.

I believe a DLL will only get compiled into your solution if you call methods from it. When it's referenced, though, the IDE will detect its presence, i.e. stuff in the DLL will show up in intellisence.

As far as visibility you are able to see all the method signatures as if you had the code file in your project, but you are not able to see the code within each methods (i.e. you see the interface, not the implementation, which is what you want. The DLL is in other words encapsulated).
Procrastination is the enemy
codonbyte
Profile Blog Joined June 2011
United States840 Posts
June 18 2013 19:28 GMT
#6242
On June 13 2013 00:24 Wobulator wrote:
Dear all;
I’ve been creating a chess AI. I’ve already created earlier versions, so I’m familiar with the programming required, but I have some specific questions about coding. The GUI is written in c#, which calls c++ DLLs to do the real thinking. Both are written by me in visual studio 2010 Express.
1) My board representations make heavy use of bitwise operators. Are these optimized and fast in a managed language? (Specifically Visual c++)
2) How does one debug a DLL? I saw something about attaching a debugger to the DLL. I’m not quite sure how this would work, and the internet says this can’t be done in Express edition anyways.

Because I'm not a computer scientist/engineer and just program for fun, I've always used the easiest programming tools, so I sometimes end up learning things backwards.
Thanks for the help.

Ideally you'd have your DLL completely debugged BEFORE you start using it in your project. If you own the DLL, it's probably a good idea to fully test it on its own before you start using it in your project, which you would do with the source-code files for the DLL that you are writing, just the way you'd debug anything else. If you don't own the DLL then it's the responsibility of whoever owns it to make sure it's fully debugged before they distribute it. In this case you can (and probably should, though I never do) write a test program that will make sure the DLL works the way you think it does. If you have a unit test suite I believe you can make unit tests for a DLL (never done it myself but I've read programming books telling me that I should).
Procrastination is the enemy
freelander
Profile Blog Joined December 2004
Hungary4707 Posts
Last Edited: 2013-06-18 20:48:23
June 18 2013 20:47 GMT
#6243
On June 13 2013 09:03 Millitron wrote:
I need a little advice. My friends and I have been wanting to make a videogame for a good two years now. We finally have a good idea, and I want to start off on the best foot possible. I just graduated with a BS in Computer Science, so I'm pretty good at programming. I'm most confident in Java, but I also know a good deal of C#. My friends have no programming experience, and have just started learning Java.

I was wondering if anyone knew any good 2D engines that support isometric view and mouse interaction.

Thanks in advance.


I recommend trying out Löve2D
And here is an isometric module for it: Isömap

You have to program in lua--> no compile, yet still quite fast. It's easy to learn, especially if you used C like languages before. I think your friend will learn it faster than Java.

Löve2D handles everything, opens the window, handles inputs, makes sounds. Has shader supports if you want some fancy effects.. Even has a built in physics engine (Box2D, used by for example Angry Birds, Bad Piggies, and a lot of Indie games. I wrote a löve2d tool for it). Also your game will be automatically multiplatform.

Cons are you can't really hide the source code, and lack of IDE support (not that much of a deal, at least there is trace)
And all is illuminated.
Beamer
Profile Joined March 2010
United States242 Posts
Last Edited: 2013-06-18 23:50:24
June 18 2013 23:50 GMT
#6244
I am getting a weird segmentation fault that I can't find the cause of. I would really appreciate some help. Here's my main:

// Main file

#include <iostream>
#include "Deck.h"
using namespace std;

int main()
{
Deck deck;
cout << "DeckSize: " << deck.GetDeckSize() << endl;

return 0;
}


This gets me a segmentation fault. However, if I separate the cout statement like the following, I don't get a segmantation fault and my code works correctly:

// Main file

#include <iostream>
#include "Deck.h"
using namespace std;

int main()
{
Deck deck;
cout << "DeckSize: ";
cout << deck.GetDeckSize() << endl;

return 0;
}


I ran my code through GDB and it said that the segmentation fault occurred when "deck" is initiallized, then when Remake() is called, then when SetRank(int) is called such that rankIn = 2. This does not make any sense to me. Why would my cout statement change the way "deck" is initiallized and cause a seg fault some of the time?

Below are sections of the other files that are relevent.

+ Show Spoiler [Deck Header] +
// Header file for Deck class

#ifndef DECK_H_
#define DECK_H_
#include "Card.h"

class Deck
{
Card card [52]; // 52 cards in a deck
int deckSize; // Maximum number of cards in the deck, usually 52
int cardsPresent; // Current number of cards in the deck
int lowRank;
int highRank;
bool acesHigh; // Identifies if the deck recognizes aces as high or low
public:
// Constructors
Deck();
Deck(int);
Deck(int, int);

// Getters
Card GetCard(int i) {return card[i];}
int GetDeckSize() {return deckSize;}
int GetCardsPresent() {return cardsPresent;}
int GetLowRank() {return lowRank;}
int GetHighRank() {return highRank;}
bool getAcesHigh() {return acesHigh;}

void Remake();
Card GetLowestCard(); // Returns the lowest card currently in the deck
Card GetHighestCard(); // Returns the highest card currently in the deck
void GetDeck(Card []);
Card Draw(); // Draws a random card from the deck
Card Draw(int, int);
};

#endif

+ Show Spoiler [Deck Source] +
// Source file for Deck class

#include <cstdlib>
#include <ctime>
#include "Deck.h"

Deck::Deck()
{
deckSize = 52;
lowRank = 2;
highRank = 14;
acesHigh = true;

Remake();
}

...

void Deck::Remake()
{
for(int rank = lowRank; rank <= highRank; rank++)
{
for(int suit = 0; suit < 4; suit++)
{
card[cardsPresent].SetRank(rank);
card[cardsPresent].SetSuit(suit);
cardsPresent++;
}
}
}

+ Show Spoiler [Card Header] +
// Header file for Card class

#ifndef CARD_H_
#define CARD_H_
#define JACK 11
#define QUEEN 12
#define KING 13
#define ACE 14
#define ACE_LOW 1
#define CLUBS 0
#define DIAMONDS 1
#define HEARTS 2
#define SPADES 3
#include <string>
#include <sstream>
using namespace std;

class Card
{
int rank; // Card rank, 2-14 (aces high) or 1-13 (aces low)
int suit; // Card suit, 0 = Clubs, 1 = Diamonds, 2 = Hearts, 3 = Spades
string itos(int);
public:
Card(); // Default constructor
Card(int, int); // First int specifies rank, second int specifies suit
int GetRank(); // Returns card rank
int GetSuit(); // Returns card suit
void SetRank(int); // Sets card rank to given parameter
void SetSuit(int); // Sets card suit to given parameter
string GetName();
string GetNameCompact();

int operator+(Card cardIn) {return rank + cardIn.GetRank();}
int operator-(Card cardIn) {return rank - cardIn.GetRank();}
int operator*(Card cardIn) {return rank * cardIn.GetRank();}
double operator/(Card cardIn) {return double(rank) / double(cardIn.GetRank());}
Card operator=(Card cardIn);
bool operator==(Card cardIn) {return rank == cardIn.GetRank() ? true : false;}
bool operator!=(Card cardIn) {return rank != cardIn.GetRank() ? true : false;}
bool operator>(Card cardIn) {return rank > cardIn.GetRank() ? true : false;}
bool operator<(Card cardIn) {return rank < cardIn.GetRank() ? true : false;}
bool operator>=(Card cardIn) {return rank >= cardIn.GetRank() ? true : false;}
bool operator<=(Card cardIn) {return rank <= cardIn.GetRank() ? true : false;}
};

#endif

+ Show Spoiler [Card Source] +
// Source file for Card class

#include <iostream>
#include "Card.h"
using namespace std;

Card::Card()
{
rank = 2;
suit = CLUBS;
}

Card::Card(int rankIn, int suitIn)
{
rank = rankIn;
suit = suitIn;
}

void Card::SetRank(int rankIn)
{
rank = rankIn;
}

int Card::GetRank()
{
return rank;
}

void Card::SetSuit(int suitIn)
{
suit = suitIn;
}

int Card::GetSuit()
{
return suit;
}
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
June 19 2013 00:18 GMT
#6245
@Beamer, I don't think you've actually set the value for cardsPresent in your Deck constructor.
There is no one like you in the universe.
Zeke50100
Profile Blog Joined February 2010
United States2220 Posts
June 19 2013 00:21 GMT
#6246
It appears that cardsPresent is uninitialized, leading to unintended behavior (you could easily be accessing cards that don't exist). It's probably failing and breaking immediately as you call "SetRank(rank)" when rank is 2 because the default-constructed Deck will always have a lowRank of 2. Try adding "cardsPresent = 0" somewhere in the constructor and see if there are further problems.
Beamer
Profile Joined March 2010
United States242 Posts
June 19 2013 00:39 GMT
#6247
Wow, thanks guys! That fixed my problem. I would have never guessed that the seg fault was because of that (in fact, I still don't understand it).
Rombur
Profile Joined January 2011
Belgium107 Posts
June 19 2013 00:54 GMT
#6248
On June 19 2013 09:39 Beamer wrote:
Wow, thanks guys! That fixed my problem. I would have never guessed that the seg fault was because of that (in fact, I still don't understand it).

The segfault is in the Remake: card[cardsPresent].SetRank(rank); since cardsPresent is not defined, you don't what number you are going to get. GDB was right
Jinro, Rain, Sting, Byun, Alive, Bomber Fighting
Nausea
Profile Joined October 2010
Sweden807 Posts
Last Edited: 2013-06-19 14:20:12
June 19 2013 14:19 GMT
#6249
Hey, got a question about reading binary files. (c++)

Is there any simple way of being able to see if someone edited the binary file before i try to load it in?
So the program wont crash.
Set it ablaze!
phar
Profile Joined August 2011
United States1080 Posts
June 19 2013 16:16 GMT
#6250
Checksum
Who after all is today speaking about the destruction of the Armenians?
Omer
Profile Blog Joined May 2010
Israel442 Posts
June 19 2013 16:19 GMT
#6251
Anyone mess with the new android studio yet? i just finished my first year of compsci at UMD and looking to learn java now, does anyone recommend any books that have the equivalents of labs / projects that i would get from a course? thats always been my biggest issue, its much easier for me to learn if i things im told to program releating to what im currently learning.
Nausea
Profile Joined October 2010
Sweden807 Posts
June 19 2013 16:58 GMT
#6252
On June 20 2013 01:16 phar wrote:
Checksum


You answered me?

I got another question on the subject then.
Say my program saves the file in it's first run and then the file is only loaded the next times i run the program.
How is the program supposed to know what checksum the file had when it was written?
Set it ablaze!
DumJumJmyWum
Profile Joined March 2011
United States75 Posts
June 19 2013 17:02 GMT
#6253
On June 20 2013 01:19 Omer wrote:
Anyone mess with the new android studio yet? i just finished my first year of compsci at UMD and looking to learn java now, does anyone recommend any books that have the equivalents of labs / projects that i would get from a course? thats always been my biggest issue, its much easier for me to learn if i things im told to program releating to what im currently learning.


I'm subscribed to the New York Android Group, and they say it's still really buggy. It's only still in its early stages (v0.1.1). I'd recommend sticking with eclipse for the time being.

The java tutorials (http://docs.oracle.com/javase/tutorial/) are a great resource to start with to learning java.
tofucake
Profile Blog Joined October 2009
Hyrule19188 Posts
Last Edited: 2013-06-19 17:02:55
June 19 2013 17:02 GMT
#6254
On June 20 2013 01:58 Nausea wrote:
Show nested quote +
On June 20 2013 01:16 phar wrote:
Checksum


You answered me?

I got another question on the subject then.
Say my program saves the file in it's first run and then the file is only loaded the next times i run the program.
How is the program supposed to know what checksum the file had when it was written?


Save it somewhere.
Liquipediaasante sana squash banana
Leafty
Profile Joined July 2012
France84 Posts
June 19 2013 17:15 GMT
#6255
On June 20 2013 01:58 Nausea wrote:
Show nested quote +
On June 20 2013 01:16 phar wrote:
Checksum


You answered me?

I got another question on the subject then.
Say my program saves the file in it's first run and then the file is only loaded the next times i run the program.
How is the program supposed to know what checksum the file had when it was written?

Put the checksum at the beginning of the file? Fixed byte offset is easy to deal with.

And I don't really understand why you would check a binary file. If someone's dumb enough to play with those, they deserve a bluescreen.
Nausea
Profile Joined October 2010
Sweden807 Posts
June 19 2013 17:17 GMT
#6256
On June 20 2013 02:15 Leafty wrote:
Show nested quote +
On June 20 2013 01:58 Nausea wrote:
On June 20 2013 01:16 phar wrote:
Checksum


You answered me?

I got another question on the subject then.
Say my program saves the file in it's first run and then the file is only loaded the next times i run the program.
How is the program supposed to know what checksum the file had when it was written?

Put the checksum at the beginning of the file? Fixed byte offset is easy to deal with.

And I don't really understand why you would check a binary file. If someone's dumb enough to play with those, they deserve a bluescreen.


Ok, thank you.
Set it ablaze!
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2013-06-19 17:21:25
June 19 2013 17:20 GMT
#6257
On June 20 2013 02:15 Leafty wrote:
Show nested quote +
On June 20 2013 01:58 Nausea wrote:
On June 20 2013 01:16 phar wrote:
Checksum


You answered me?

I got another question on the subject then.
Say my program saves the file in it's first run and then the file is only loaded the next times i run the program.
How is the program supposed to know what checksum the file had when it was written?

Put the checksum at the beginning of the file? Fixed byte offset is easy to deal with.

And I don't really understand why you would check a binary file. If someone's dumb enough to play with those, they deserve a bluescreen.


or you can save an example.bin.md5 or whatever in the same directory. Generate an md5 from the binary file when you load it, then compare it to the .md5 in the directory. If they match, there has been no corruption.

Sometimes files can get modified accidentally and not maliciously. Checksums will also catch things like corruption from weird things, like uploading it via ASCII mode instead of BIN mode to an ftp server. The most common case I see of this is stupid version control systems (*cough* clearcase *cough*)
Any sufficiently advanced technology is indistinguishable from magic
heroyi
Profile Blog Joined March 2009
United States1064 Posts
Last Edited: 2013-06-19 18:07:13
June 19 2013 18:00 GMT
#6258
Question:

1)Is there any good quiz or tests online that can accurately gauge your aptitude in a language? So if I wanna say that, for example, I am intimate with Java how can I make sure that I really am good with it proving myself that I am indeed knowledgeable in said field.

Also any tips for an aspiring Software Dev or Architect?

Been thinking of dabbling in web/online stuff except I have no experience or knowledge to even sustain my ability to study such field. Should I just go study javascript, css, html, php and go from there ?

edit:
More info on 1:
At what point can you say that you know a language well enough and know that you can confidently work on any project with said language coupled with a good reference to recall some obscure class/method/object? I doubt that people know the full capacity of a language's library much like someone knowing ALL the vocabulary in an dictionary. Is it just know the basic frame of an OOP language (if, do, while, bool etc...) and know your algo (data structures, search query etc...) and fill in any gaps (hopefully some gaps) with a good reference considering languages changes all the time?
wat wat in my pants
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
June 19 2013 21:57 GMT
#6259
On June 20 2013 03:00 heroyi wrote:
Question:

1)Is there any good quiz or tests online that can accurately gauge your aptitude in a language? So if I wanna say that, for example, I am intimate with Java how can I make sure that I really am good with it proving myself that I am indeed knowledgeable in said field.

Also any tips for an aspiring Software Dev or Architect?

Been thinking of dabbling in web/online stuff except I have no experience or knowledge to even sustain my ability to study such field. Should I just go study javascript, css, html, php and go from there ?

edit:
More info on 1:
At what point can you say that you know a language well enough and know that you can confidently work on any project with said language coupled with a good reference to recall some obscure class/method/object? I doubt that people know the full capacity of a language's library much like someone knowing ALL the vocabulary in an dictionary. Is it just know the basic frame of an OOP language (if, do, while, bool etc...) and know your algo (data structures, search query etc...) and fill in any gaps (hopefully some gaps) with a good reference considering languages changes all the time?


Aptitude in a specific language is really hard to measure and even long time professionals don't really memorize a lot of the stuff, e.g. method names of specific libraries. You could ask some experienced Java programmers wether the native Array in Java uses .count, .getLength(), .size() or whatever else to return the number of elements and they would probably be stumped for a bit. A good programmer can tell you which datatype to use for some use-cases, e.g. list vs native array and all that, though he might not even know how to spell a specific class name since he will usually use autocomplete for it. As for algorithms, you learn a lot of algorithms when becoming a programmer and you will find out that you actually won't use any of them. Noone programs his sort algorithms from scratch unless he is developing a new language since all languages have their native implementations that work a lot faster and in 99.9% of the cases it doesn't matter what algorithm the .sort() of the native library uses.

It's not the knowledge of the tiny parts that matters, it's knowledge about how to put it all together that defines a good programmer. You know a language good enough when you are able to take a project requirement and turn it into actual, working code.

You need to know the basics, e.g. loops, conditionals, basic datatypes (int,float,double,bool,string,etc.) and then you are done learning specifics, the rest is all about putting it together and checking the reference or google when you need to know how to do a specific thing (you'd be suprised how much even the most experienced programmers use google). For that you might want to look into design patterns that give a small guide into how to put the parts together but the biggest help for that is experience and talent, you can't really learn that part in any school or book.
phar
Profile Joined August 2011
United States1080 Posts
June 20 2013 01:46 GMT
#6260
On June 20 2013 01:58 Nausea wrote:
Show nested quote +
On June 20 2013 01:16 phar wrote:
Checksum


You answered me?

I got another question on the subject then.
Say my program saves the file in it's first run and then the file is only loaded the next times i run the program.
How is the program supposed to know what checksum the file had when it was written?

Yea sorry, was on phone couldn't type more quickly. Other people have given more detailed hints. The specifics of your implementation will sort of depend on your use case, but saving checksum in the same file is ok if it's just a small thing. Not terribly secure, but it'll work
Who after all is today speaking about the destruction of the Armenians?
Prev 1 311 312 313 314 315 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 1h 26m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 115
StarCraft: Brood War
Sea 4554
Rain 3153
Horang2 1105
Shuttle 558
Larva 463
Mini 433
Hyuk 423
Stork 353
actioN 274
ZerO 264
[ Show more ]
Leta 197
Mong 178
EffOrt 150
Soma 136
Zeus 120
Nal_rA 96
Hyun 95
ggaemo 87
Rush 79
JulyZerg 72
Light 71
910 71
Killer 69
hero 49
zelot 34
Mind 33
Sharp 33
Free 22
soO 18
Sexy 18
Terrorterran 17
scan(afreeca) 16
Noble 12
ajuk12(nOOB) 12
Sacsri 10
Bale 9
Dota 2
XcaliburYe114
NeuroSwarm110
ODPixel85
League of Legends
JimRising 452
C9.Mang0449
Counter-Strike
olofmeister1829
shoxiejesuss835
allub230
Super Smash Bros
Mew2King114
Other Games
summit1g7664
ceh9617
Pyrionflax289
Fuzer 176
ZerO(Twitch)11
Organizations
Other Games
gamesdonequick2913
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 4
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos2276
• Lourlo1224
• Stunt525
Upcoming Events
WardiTV Invitational
1h 26m
PiGosaur Cup
14h 26m
WardiTV Invitational
1d 1h
The PondCast
1d 23h
OSC
2 days
OSC
3 days
All Star Teams
3 days
INnoVation vs soO
sOs vs Scarlett
uThermal 2v2 Circuit
4 days
All Star Teams
4 days
MMA vs DongRaeGu
Rogue vs Oliveira
Sparkling Tuna Cup
4 days
[ Show More ]
OSC
5 days
Replay Cast
5 days
Wardi Open
6 days
Liquipedia Results

Completed

Proleague 2026-01-12
Big Gabe Cup #3
NA Kuram Kup

Ongoing

C-Race Season 1
IPSL Winter 2025-26
BSL 21 Non-Korean Championship
CSL 2025 WINTER (S19)
OSC Championship Season 13
Underdog Cup #3
BLAST Bounty Winter Qual
eXTREMESLAND 2025
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025

Upcoming

Escore Tournament S1: W4
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
Rongyi Cup S3
Thunderfire SC2 All-star 2025
Nations Cup 2026
BLAST Open Spring 2026
ESL Pro League Season 23
ESL Pro League Season 23
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 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.