expansions in KBang

538 views
Skip to first unread message

Bl_Cervian91

unread,
Mar 30, 2011, 6:40:32 AM3/30/11
to kbang-players
Hello everyone! I'm trying to insert the expansion cards in the game.
some of you want to help me?

Dana Hronova

unread,
Mar 30, 2011, 7:09:05 AM3/30/11
to kbang-...@googlegroups.com
u have original code? in which program lenguage its wretten?

On Wed, Mar 30, 2011 at 12:40 PM, Bl_Cervian91 <Bl_Cer...@hotmail.it> wrote:
Hello everyone! I'm trying to insert the expansion cards in the game.
some of you want to help me?

--
You received this message because you are subscribed to the Google Groups "kbang-players" group.
To post to this group, send email to kbang-...@googlegroups.com.
To unsubscribe from this group, send email to kbang-player...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/kbang-players?hl=en.


Bl_Cervian91

unread,
Mar 31, 2011, 2:02:34 PM3/31/11
to kbang-players
Yes ... if you are familiar with SVN you can download fully from
http://kbang.googlecode.com/svn/...the language is C + +. If you are
interested I have placed 26 of 40 cards from High Noon, and half of
new characters! Cervian

Harsha Attur

unread,
Mar 31, 2011, 2:12:17 PM3/31/11
to kbang-...@googlegroups.com
when will the new cards be ready to play ?
I am very much interested to play with expansion sets.


--

Bl_Cervian91

unread,
Mar 31, 2011, 2:46:24 PM3/31/11
to kbang-players
I do not know ... this is a hobby for me but if we can collaborate to
finish the project of mac jariel.

On 31 Mar, 20:12, Harsha Attur <harsha.at...@gmail.com> wrote:
> when will the new cards be ready to play ?
> I am very much interested to play with expansion sets.
>
> On Thu, Mar 31, 2011 at 11:02 AM, Bl_Cervian91 <Bl_Cervia...@hotmail.it>wrote:
>
> > Yes ... if you are familiar with SVN you can download fully from
> >http://kbang.googlecode.com/svn/...thelanguage is C + +. If you are

Dana Hronova

unread,
Mar 31, 2011, 3:15:25 PM3/31/11
to kbang-...@googlegroups.com
hi i know c sharp and dont know what is svn, im sorry, but i like to
view your implementation, because i think that c++ code i can read but
not write.
thanks

Bl_Cervian91

unread,
Mar 31, 2011, 3:26:47 PM3/31/11
to kbang-players
I can send you the application ... or some pieces of my code


On 31 Mar, 21:15, Dana Hronova <lady.konvi...@gmail.com> wrote:
> hi i know c sharp and dont know what is svn, im sorry, but i like to
> view your implementation, because i think that c++ code i can read but
> not write.
> thanks
>
> On 3/31/11, Bl_Cervian91 <Bl_Cervia...@hotmail.it> wrote:
>
> > I do not know ... this is a hobby for me but if we can collaborate to
> > finish the project of mac jariel.
>
> > On 31 Mar, 20:12, Harsha Attur <harsha.at...@gmail.com> wrote:
> >> when will the new cards be ready to play ?
> >> I am very much interested to play with expansion sets.
>
> >> On Thu, Mar 31, 2011 at 11:02 AM, Bl_Cervian91
> >> <Bl_Cervia...@hotmail.it>wrote:
>
> >> > Yes ... if you are familiar with SVN you can download fully from
> >> >http://kbang.googlecode.com/svn/...thelanguageis C + +. If you are

Bl_Cervian91

unread,
Mar 31, 2011, 3:28:17 PM3/31/11
to kbang-players
this is a little piece...you can see language here


CardShield::CardShield(Game *game, int id, CardShield::Type type,
CardSuit suit, CardRank rank):
TableCard(game, id, CARD_UNKNOWN, suit, rank),
m_type(type)
{
switch(m_type) {
case Barrel:
setType(CARD_BARREL);
break;
case Hat:
setType(CARD_HAT);
break;
case Sombrero:
setType(CARD_SOMBRERO);
break;
case Bible:
setType(CARD_BIBLE);
break;
case Ironplate:
setType(CARD_IRONPLATE);
break;
}
}

CardShield::~CardShield()
{
}

void CardShield::play()
{
gameCycle()->assertTurn();
assertInHand();
if (owner()->hasIdenticalCardOnTable(this))
throw TwoSameOnTableException();
gameTable()->playerPlayCardOnTable(this);
}

void CardShield::registerPlayer(Player*)
{
}

void CardShield::unregisterPlayer(Player*)
{
}
void CardShield::use()
{
gameTable()->playerDiscardCard(this);
}

void CardShield::check(CheckDeckResultHandler* resultHandler)
{
gameCycle()->checkDeck(owner(), this, *CardShield::checkBarrel,
resultHandler);
}

bool CardShield::checkBarrel(PlayingCard* card)
{
return (card->suit() == SUIT_HEARTS);
}

Dana Hronova

unread,
Apr 1, 2011, 2:20:21 AM4/1/11
to kbang-...@googlegroups.com
both?

Dana Hronova

unread,
Apr 1, 2011, 2:25:00 AM4/1/11
to kbang-...@googlegroups.com
yes, its like i said, i can read and understand, but i dont know the syntax right of c++ and thats the reason why i couldnt write it


--

Bl_Cervian91

unread,
Apr 13, 2011, 11:30:24 AM4/13/11
to kbang-players
So there is anyone that can halp me?

On 1 Apr, 08:25, Dana Hronova <lady.konvi...@gmail.com> wrote:
> yes, its like i said, i can read and understand, but i dont know the syntax
> right of c++ and thats the reason why i couldnt write it
>

Facundo Pacheco Sosa

unread,
Jan 11, 2013, 9:36:20 AM1/11/13
to kbang-...@googlegroups.com
I can't access to the code page. Can you post it again?
I can maybe be useful with some coding, but besides, what else do you need?

Simone Venturini

unread,
Jan 11, 2013, 1:59:21 PM1/11/13
to kbang-...@googlegroups.com
Hi! wedsite repository is http://kbang.googlecode.com/svn/
You need something like turtoise SVN or a website dumper to download all the code.
When you have all this stuff try to compilate and solve some issues in the code.
Currently I'm working on a previous version but there is an uncomplete source code of a better version with support to custom decks.
See you later.


Date: Fri, 11 Jan 2013 06:36:20 -0800
From: dons...@gmail.com
To: kbang-...@googlegroups.com
Subject: [kbang-players] Re: expansions in KBang
--
You received this message because you are subscribed to the Google Groups "kbang-players" group.
To view this discussion on the web visit https://groups.google.com/d/msg/kbang-players/-/v8s7T7qhqqsJ.

Christian Wen

unread,
Jan 11, 2013, 2:19:24 PM1/11/13
to kbang-...@googlegroups.com
Oh I love bang.  But I never used kbang before.  

Is this a multiplayer version?  (Real people)

Simone Venturini

unread,
Jan 11, 2013, 3:51:54 PM1/11/13
to kbang-...@googlegroups.com
yep! a good version of bang in multiplayer



From: christ...@gmail.com
Date: Fri, 11 Jan 2013 14:19:24 -0500
Subject: Re: [kbang-players] Re: expansions in KBang
To: kbang-...@googlegroups.com

Petr Szakos

unread,
Mar 14, 2014, 7:48:16 AM3/14/14
to kbang-...@googlegroups.com
Thanks
Reply all
Reply to author
Forward
0 new messages