• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 23:20
CEST 05:20
KST 12:20
  • 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
TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 13-19): Clem Goes for Four0BSL Team A vs Koreans - Sat-Sun 16:00 CET6Weekly Cups (Oct 6-12): Four star herO85.0.15 Patch Balance Hotfix (2025-10-8)80Weekly Cups (Sept 29-Oct 5): MaxPax triples up3
StarCraft 2
General
The New Patch Killed Mech! Team Liquid Map Contest #21 - Presented by Monster Energy herO joins T1 Weekly Cups (Oct 13-19): Clem Goes for Four TL.net Map Contest #21: Voting
Tourneys
SC2's Safe House 2 - October 18 & 19 INu's Battles #13 - ByuN vs Zoun Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $1,200 WardiTV October (Oct 21st-31st)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers
Brood War
General
BW caster Sayle BSL Season 21 BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ BSL Team A vs Koreans - Sat-Sun 16:00 CET
Tourneys
[Megathread] Daily Proleagues SC4ALL $1,500 Open Bracket LAN Azhi's Colosseum - Anonymous Tournament [ASL20] Semifinal B
Strategy
[I] TvP Strategies and Build Roaring Currents ASL final [I] TvZ Strategies and Builds Current Meta
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV ZeroSpace Megathread
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
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Men's Fashion Thread Sex and weight loss
Fan Clubs
The herO Fan Club!
Media & Entertainment
Series you have seen recently... Anime Discussion Thread [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
The Heroism of Pepe the Fro…
Peanutsc
Rocket League: Traits, Abili…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1703 users

The Big Programming Thread - Page 709

Forum Index > General Forum
Post a Reply
Prev 1 707 708 709 710 711 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.
Manit0u
Profile Blog Joined August 2004
Poland17386 Posts
March 11 2016 18:25 GMT
#14161
On March 12 2016 03:17 madnessman wrote:
Has anybody had any success here writing an SC:BW AI which doesn't just execute a few hard coded strategies? I've finished my courses in AI and machine learning and I'm thinking about writing a BW AI to compete in the CIG AI competition this year. I found a few papers where researchers tried to implement more sophisticated methods but those bots didn't fare too well against the other competitive bots.


You could always check out the WC3 AI. It comes bundled with the standard game in the editor. Me and my brother did have a blast editing AI's and pitting them against each other in it. Never got around to checking if you could mess with the internals of it, but it could be worth a try.
Time is precious. Waste it wisely.
madnessman
Profile Blog Joined May 2009
United States1581 Posts
March 11 2016 18:40 GMT
#14162
On March 12 2016 03:25 Manit0u wrote:
Show nested quote +
On March 12 2016 03:17 madnessman wrote:
Has anybody had any success here writing an SC:BW AI which doesn't just execute a few hard coded strategies? I've finished my courses in AI and machine learning and I'm thinking about writing a BW AI to compete in the CIG AI competition this year. I found a few papers where researchers tried to implement more sophisticated methods but those bots didn't fare too well against the other competitive bots.


You could always check out the WC3 AI. It comes bundled with the standard game in the editor. Me and my brother did have a blast editing AI's and pitting them against each other in it. Never got around to checking if you could mess with the internals of it, but it could be worth a try.


There's actually a great FOSS API for interfacing with BW (https://github.com/bwapi/bwapi) which seems to be the standard. Time to brush off the C++ skills!
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
March 11 2016 20:31 GMT
#14163
On March 11 2016 22:18 iaretehnoob wrote:
I don't think "strings are character arrays" qualifies as a quirk.

Nah, not that, it's that since php supports heterogeneous arrays you would think an index call to a 1-d array element would not be allowed. Not sure how PHP is implemented but it probably increases overhead having to check to make sure the array element is indexable / that there isn't a runtime error. And yeah as others said it's borderline obfuscatory.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
March 11 2016 21:31 GMT
#14164
C++14 question.

Why do people use auto parameters and auto return type? How is this safe if you change a function in the future?
Manit0u
Profile Blog Joined August 2004
Poland17386 Posts
Last Edited: 2016-03-11 21:44:33
March 11 2016 21:36 GMT
#14165

$str = 'abcd';

if (is_array($str)) {
echo 'array';
} else {
echo 'not an array';
} // not an array

echo $str[3]; // d

echo implode(', ', array_values($str)); // ERROR: array_values() expects parameter 1 to be array, string given


[image loading]

It would seem that strings in PHP are treated like char arrays only when you're trying to access index on them (also used for functions like strpos etc.) but otherwise they're just string literals? It's bullshit if you ask me.

On March 12 2016 06:31 Shield wrote:
C++14 question.

Why do people use auto parameters and auto return type? How is this safe if you change a function in the future?


I guess it's because g++ is a really good compiler and it'll fill those out with proper types anyway? I'm not a C++ specialist by any measure so you'll want a second opinion on this.
Time is precious. Waste it wisely.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2016-03-11 22:54:01
March 11 2016 22:53 GMT
#14166
On March 12 2016 06:36 Manit0u wrote:

$str = 'abcd';

if (is_array($str)) {
echo 'array';
} else {
echo 'not an array';
} // not an array

echo $str[3]; // d

echo implode(', ', array_values($str)); // ERROR: array_values() expects parameter 1 to be array, string given


[image loading]

It would seem that strings in PHP are treated like char arrays only when you're trying to access index on them (also used for functions like strpos etc.) but otherwise they're just string literals? It's bullshit if you ask me.

Show nested quote +
On March 12 2016 06:31 Shield wrote:
C++14 question.

Why do people use auto parameters and auto return type? How is this safe if you change a function in the future?


I guess it's because g++ is a really good compiler and it'll fill those out with proper types anyway? I'm not a C++ specialist by any measure so you'll want a second opinion on this.


C++11 and C++14 have auto defined by standard, so g++ is irrelevant here. Any C++14 compiler is supposed to support this.
Manit0u
Profile Blog Joined August 2004
Poland17386 Posts
March 11 2016 23:47 GMT
#14167
Yeah, but is it a matter of "Do not help the compiler" (as in - no need to use static typing since the compiler can optimize it nicely for you so you can just go ahead and declare stuff as auto without any loss to performance) or something else entirely?
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18093 Posts
March 12 2016 00:18 GMT
#14168
On March 12 2016 03:17 madnessman wrote:
Has anybody had any success here writing an SC:BW AI which doesn't just execute a few hard coded strategies? I've finished my courses in AI and machine learning and I'm thinking about writing a BW AI to compete in the CIG AI competition this year. I found a few papers where researchers tried to implement more sophisticated methods but those bots didn't fare too well against the other competitive bots.

In general, in games, it´s really hard to beat a selection of hardcoded strategies.

Think of chess: sure, you can choose your flavour of opening, but once you choose the opening, you just follow it through for 5-10 moves before things deviate again. In SC:BW this is your build order. Then you get to the hard part of chess, or in SC:BW, you get to the bit where you have to decide based on how the game is developing what to do: army composition, etc. etc. Skirmishes are like chess endgame: there are once again a set of preset moves which work (muta stacking, focus firing, spreading out in an arc, stutter stepping, etc. etc.)

Obviously there are things that are different from chess (pretty much all the decisionmaking is based on incomplete information for starters, and the search space is both far larger and far smaller at the same time).

Anyway, it's a fun project, so go for it! As others mentioned, can do it for WC3 too, which might be more interesting (less figured out because there's so many spells).
Cyx.
Profile Joined November 2010
Canada806 Posts
Last Edited: 2016-03-12 05:49:12
March 12 2016 05:38 GMT
#14169
On March 12 2016 08:47 Manit0u wrote:
Yeah, but is it a matter of "Do not help the compiler" (as in - no need to use static typing since the compiler can optimize it nicely for you so you can just go ahead and declare stuff as auto without any loss to performance) or something else entirely?

I usually refer people to Herb Sutter when talking about auto. The main argument of the linked article is that it abstracts the actual types from your code and makes it dependent only on the interface, which I completely agree with. The thing I think he trivializes a bit is that sometimes it makes your code distinctly less readable when the types become unclear - I tend to use auto everywhere, unless I feel like it would impact readability, for those reasons.

e: maybe an example would be cool.


list<Thing> things = GetThings();

for (const Thing &thing : things) {
thing.DoStuff();
}


auto things = GetThings();

for (const auto &thing : things) {
thing.DoStuff();
}

There are two ways using auto makes this nicer if the return type of GetThings() changes.

1) GetThings() changes to return a vector<Thing> instead of a list<Thing> (because someone you work with heard it was Good Practice (tm) to use vectors and not lists). The explicitly typed code has to be changed to state that things is a vector<thing>.

2) GetThings() changes to return a list<IThing> instead of a list<Thing> (because someone you work with heard it was Good Practice (tm) to use interfaces and not concrete classes). The explicitly typed code has to be changed to state that things is a list<IThing>, and thing is an IThing, while the auto code only relies on the DoStuff() method being present.
raNazUra
Profile Joined December 2012
United States10 Posts
March 12 2016 06:18 GMT
#14170
On March 12 2016 03:17 madnessman wrote:
Has anybody had any success here writing an SC:BW AI which doesn't just execute a few hard coded strategies? I've finished my courses in AI and machine learning and I'm thinking about writing a BW AI to compete in the CIG AI competition this year. I found a few papers where researchers tried to implement more sophisticated methods but those bots didn't fare too well against the other competitive bots.


If you're starting from scratch, you may want to check out UAlbertaBot. It's pretty modular and easy to improve, and has most of the basic software engineering done, things that can be annoying to deal with.

Or you can start completely fresh! As an AI researcher who uses SC:BW on occasion, we'd love to have more people to play against =) As you said, for now good engineering (i.e. limiting manipulatable edge cases) is almost more important than having a sophisticated AI, but hopefully we'll get past that.
Speak the truth, even if your voice shakes
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
March 12 2016 07:50 GMT
#14171
On March 12 2016 15:18 raNazUra wrote:
Show nested quote +
On March 12 2016 03:17 madnessman wrote:
Has anybody had any success here writing an SC:BW AI which doesn't just execute a few hard coded strategies? I've finished my courses in AI and machine learning and I'm thinking about writing a BW AI to compete in the CIG AI competition this year. I found a few papers where researchers tried to implement more sophisticated methods but those bots didn't fare too well against the other competitive bots.


If you're starting from scratch, you may want to check out UAlbertaBot. It's pretty modular and easy to improve, and has most of the basic software engineering done, things that can be annoying to deal with.

Or you can start completely fresh! As an AI researcher who uses SC:BW on occasion, we'd love to have more people to play against =) As you said, for now good engineering (i.e. limiting manipulatable edge cases) is almost more important than having a sophisticated AI, but hopefully we'll get past that.

Thanks for posting this, I'm taking my first AI class next fall and reading through some of the UAlberta code got me super excited
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2016-03-15 14:56:46
March 15 2016 14:54 GMT
#14172
Hey guys, my final year design project was a WebGL debugger embedded inside Chrome DevTools.

GitHub repo

Chrome Web Store

If it's not too much trouble, could you guys star the GitHub repo (we can get marks based on stars lol) and if you're super interested in WebGL things, give it an install and a test run? It'd be really helpful.

:D

Also our code isn't super amazing since only one of us is true JS dev, but we think it ended up pretty well.
There is no one like you in the universe.
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 16 2016 13:46 GMT
#14173
[image loading]

F**k Zend Framework 2. There is a bug in the code, guess where it is?
No, it's not anywhere in that stacktrace, it's in a controller that doesn't even appear in the stack trace, because of ZF2's stupid event system that detaches itself from the actual code.
If I didn't know what code I touched, I'd be stuck searching the problem for half an hour trying to find the problem.

Don't use ZF2 for your projects.
tofucake
Profile Blog Joined October 2009
Hyrule19144 Posts
March 16 2016 13:53 GMT
#14174
I tried ZF2 a while back and hated it. Laravel and Symfony are sooooo much better, imo
Liquipediaasante sana squash banana
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 16 2016 13:57 GMT
#14175
On March 16 2016 22:53 tofucake wrote:
I tried ZF2 a while back and hated it. Laravel and Symfony are sooooo much better, imo


Pretty much anything is better. We're still stuck with ZF2, because our dutch overlords used it for the online shop and so we had to use it for our new website as well. Now they are pretty much out of the decision making progress, but we have too much code to scrap it and use something proper.
Manit0u
Profile Blog Joined August 2004
Poland17386 Posts
March 16 2016 20:54 GMT
#14176
Heh, I'm just negotiating a new contract with the company that wants to turn all of their old ZF1 code into Spring. Might be quite an adventure.
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18093 Posts
March 16 2016 21:13 GMT
#14177
On March 16 2016 22:46 Morfildur wrote:
[image loading]

F**k Zend Framework 2. There is a bug in the code, guess where it is?
No, it's not anywhere in that stacktrace, it's in a controller that doesn't even appear in the stack trace, because of ZF2's stupid event system that detaches itself from the actual code.
If I didn't know what code I touched, I'd be stuck searching the problem for half an hour trying to find the problem.

Don't use ZF2 for your projects.

All I saw was that your stacktrace starts with pleasure_xxx.php.

Not even hiding that you`re building a porn website?
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 16 2016 23:17 GMT
#14178
On March 17 2016 06:13 Acrofales wrote:
Show nested quote +
On March 16 2016 22:46 Morfildur wrote:
[image loading]

F**k Zend Framework 2. There is a bug in the code, guess where it is?
No, it's not anywhere in that stacktrace, it's in a controller that doesn't even appear in the stack trace, because of ZF2's stupid event system that detaches itself from the actual code.
If I didn't know what code I touched, I'd be stuck searching the problem for half an hour trying to find the problem.

Don't use ZF2 for your projects.

All I saw was that your stacktrace starts with pleasure_xxx.php.

Not even hiding that you`re building a porn website?

It's my job. It pays. And it's not half as fun as you imagine.
Manit0u
Profile Blog Joined August 2004
Poland17386 Posts
Last Edited: 2016-03-16 23:45:39
March 16 2016 23:42 GMT
#14179
At least we know it's not pornhub (it runs on Symfony)

And Morfildur is right, it's just a job. You'd be surprised how soon you get fed up with stuff like that when working on erotic lingerie websites etc. After a while it doesn't really matter what you're displaying, dumb scientology books, gay porn, whatever, you simply stop noticing it.
Time is precious. Waste it wisely.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-03-17 14:37:12
March 17 2016 05:50 GMT
#14180
--- Nuked ---
Prev 1 707 708 709 710 711 1032 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
23:00
LiuLi Cup #46 - Day 2
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft675
Nathanias 142
StarCraft: Brood War
Soulkey 234
Light 208
Noble 21
Icarus 8
Counter-Strike
Stewie2K429
Super Smash Bros
hungrybox472
Heroes of the Storm
Khaldor103
Other Games
summit1g9113
C9.Mang0327
Skadoodle167
Trikslyr61
Organizations
Other Games
gamesdonequick1079
Counter-Strike
PGL381
Other Games
BasetradeTV263
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
• Doublelift4349
• Scarra1402
• Rush669
• Lourlo317
Other Games
• WagamamaTV205
Upcoming Events
Wardi Open
7h 40m
Wardi Open
11h 10m
PiGosaur Monday
20h 40m
Replay Cast
1d 6h
Tenacious Turtle Tussle
1d 19h
The PondCast
2 days
OSC
2 days
WardiTV Invitational
3 days
Online Event
3 days
RSL Revival
3 days
[ Show More ]
RSL Revival
4 days
WardiTV Invitational
4 days
Afreeca Starleague
5 days
Snow vs Soma
Sparkling Tuna Cup
5 days
WardiTV Invitational
5 days
CrankTV Team League
5 days
RSL Revival
5 days
Wardi Open
6 days
CrankTV Team League
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
BSL 21 Non-Korean Championship
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.