Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]1 Replies - 49 Views - Last Post: Today, 12:53 PM
#1
Reputation: 2
- Posts: 19
- Joined: 10-April 13
Posted Today, 12:45 PM
Few weeks ago I decided to create first console game Texas Hold'Em Poker, everything is going pretty well...yesterday I finished and game logic, now is only left part for a River stage where a method has to check for a best hand.. But that is not a problem I came here for a help. So, I created a method getRealPointValue() which returns a real pointValue, as you can see below.public String getRealPointValue(String pointValue, boolean highAce) { switch (pointValue) { case "A": return (highAce) ? "14": "1"; case "K": return "13"; case "Q": return "12"; case "J": return "11"; case "T": return "10"; default: return pointValue; } }
So the problem now is, I have a statement where I say:
// it says no suitable method found for a String.. ok.. so I tried to cast it into (char) inside getNumricValue method just before getRealPointValue, but doesn't work... int pointValue = Character.getNumericValue(getRealPointValue("T", false));
So I decided to change a parameter pointValue into a char, and do something like this:
public static String getRealPointValue(char pointValue, boolean highAce) { switch (pointValue) { case 'A': return (highAce) ? "14": "1"; case 'K': return "13"; case 'Q': return "12"; case 'J': return "11"; case 'T': return "10"; default: return (String)pointValue; } }
But this is also impossible, bcs of incompatible types, which req a String not a char..
This post has been edited by stefilix: Today, 12:46 PM
Is This A Good Question/Topic? 0
Replies To: Does this method really thinks I'm going to cheat him? :D
#2
Reputation: 2
- Posts: 19
- Joined: 10-April 13
Re: Does this method really thinks I'm going to cheat him? :D
Posted Today, 12:53 PM
oh my god.. my bad... I'm stupid.. Since I'm going to use this methods just in some case for integer compare, then I'm going to return int.. :DDpublic static int getRealPointValue(String pointValue, boolean highAce) { switch (pointValue) { case "A": return (highAce) ? 14: 1; case "K": return 13; case "Q": return 12; case "J": return 11; case "T": return 10; default: return Integer.parseInt(pointValue); } }
So now this make sense..
int pointValue = getRealPointValue("A", true);
This post has been edited by stefilix: Today, 12:57 PM
Page 1 of 1
spring forward daylight saving time 2012 grapes of wrath silent house nfl mock draft project m colts
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.