Page 1 of 1

Download deck from magic.tcgplayer.com

PostPosted: 22 Nov 2009, 20:33
by Vasiliy
Hello. I am beginner Java programmer.
I write code to download deck from magic.tcgplayer.com
How it work...
1. Select "Download Deck" from menu in Deck editor
Image
2. Enter deck URL, example: http://magic.tcgplayer.com/db/deck.asp?deck_id=474146
3. Deck downloads and analyzes.
If card from deck is unsupport from MTGForge, then this card is remove from deck.

I now, my code is not good, but i try.

Re: Download deck from magic.tcgplayer.com

PostPosted: 22 Nov 2009, 20:59
by silly freak
hi and thanks! i think this is a cool feature. a note on your code: you could do much shorter ;)
java usually uses the "char" type when working with strings, you don't need to handle codepoints usually. the java.lang.Character class also has many utilities.

Code: Select all
temp=rStr.codePointAt(a);
if(temp>=48 && temp<=57)
can be written as
Code: Select all
if(Character.isDigit(rStr.charAt(a)))
or

Code: Select all
temp=rStr.codePointAt(a);
if(temp!=32)
as
Code: Select all
if(rStr.charAt(a) != ' ')
(this is also more readable, I had to look those up on the internet)

and again, thanks, and don't hestitate to ask for help
(and if you want, tell your native tongue, maybe we have someone in your language on the forum)

Re: Download deck from magic.tcgplayer.com

PostPosted: 22 Nov 2009, 21:00
by DennisBergkamp
This definitely looks cool, thanks Vasiliy :)

Re: Download deck from magic.tcgplayer.com

PostPosted: 23 Nov 2009, 06:54
by Vasiliy
silly freak wrote:and if you want, tell your native tongue, maybe we have someone in your language on the forum
I am from Russia. My native language is russian.

Re: Download deck from magic.tcgplayer.com

PostPosted: 24 Nov 2009, 07:42
by zerker2000
Да есть русский на форуме, я:)(translation "yes there is a Russian guy on the forum: me").

Re: Download deck from magic.tcgplayer.com

PostPosted: 24 Nov 2009, 08:46
by nantuko84
прикольно:)(translation "fine, we are not alone here").

Re: Download deck from magic.tcgplayer.com

PostPosted: 24 Nov 2009, 10:51
by Vasiliy
Вау. Рад знакомству.

Re: Download deck from magic.tcgplayer.com

PostPosted: 24 Nov 2009, 14:59
by Rob Cashwalker
Vasiliy wrote:Вау. Рад знакомству.
And google says, "Wow. Glad acquaintance."

Добро пожаловать в сообщество программирования Forge.

Re: Download deck from magic.tcgplayer.com

PostPosted: 24 Nov 2009, 18:53
by Mr.Chaos
Haha. Me and Dennis throw in a line in Dutch sometimes since we are both from the Netherlands.
To me, Russian looks odd because it uses letters/symbols that are not in the western alphabet.