Author Topic: SM's DSL off-topic-case  (Read 193158 times)

Offline Gazea2

  • Ultra Heavyweight
  • Posts: 3670
  • Rep: 9
  • the one and only
    • View Profile
    • Awards
  • Skype: gazea2
Re: SM's DSL off-topic-case
« Reply #420 on: October 07, 2010, 02:19:47 PM »
Yeah, I noticed. Another epic find by Click.


Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #421 on: October 07, 2010, 02:20:40 PM »
Where?
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline NFX

  • *
  • Posts: 14035
  • Rep: 11
  • SliSliSliSliSliSliSliSli(0)
    • AwesomeFish921
  • Awards BOTM Winner
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
  • Skype: nfxtreme0992
Re: SM's DSL off-topic-case
« Reply #422 on: October 07, 2010, 02:22:09 PM »
He's not released it yet. If you asked him very nicely, maybe gave him some sugar water, he might let us have a peek at it. =P
Co-creator of The RA2 Randomiser



Offline MassimoV

  • I Move Weight
  • *
  • Posts: 8929
  • Rep: 25
  • I make rap for people of Serbia
    • MassimoVTV
  • Awards BOTM Winner
    • View Profile
    • Mourning Glory
    • Awards
  • See profile for gamer tags: Yes
  • Skype: myhandsarefood
Re: SM's DSL off-topic-case
« Reply #423 on: October 07, 2010, 09:01:56 PM »
I really like the entire concept of the bot. By lurking through showcases, during the end of building an UHW people tend to spam flames which I like.

Offline Clickbeetle

  • *
  • Posts: 3375
  • Rep: 21
  • In Soviet Russia, bugs stomp YOU!
  • Awards BOTM Winner
    • View Profile
    • Beetle Bros site
    • Awards
Re: SM's DSL off-topic-case
« Reply #424 on: October 07, 2010, 11:30:12 PM »
I think it means:

Code: [Select]
Move
       # flame on depending on enemy's range
            enemy, flamerange = self.GetNearestEnemy()
           
            if enemy is not None and flamerange < self.flame_range:
                self.Input("Flame", 0, 130)
            elif self.GetInputStatus("Flame", 0) != 0:
                self.Input("Flame", 0, 0)
           
            targets = [x for x in self.sensors.itervalues() if x.contacts > 0 \
                and not plus.isDefeated(x.robot)]
^this from
    def Tick(self)
to
    def Activate(self, active)

Someone that is more experienced, correct me if I'm wrong.


It's even simpler than that.  All you do is put


self.Input("Flame", 0, 100)


(No need for a cheaty 130 input in this case)


right under def Activate.  You can even just throw it in Omni, like so:


Code: [Select]

    def Activate(self, active):
        # Activate flame control at the start of the match, leaving it alone in def Tick
        self.Input("Flame", 0, 100)
        if active:
            if AI.SuperAI.debugging:
                self.debug = Gooey.Plain("watch", 0, 75, 100, 75)
                tbox = self.debug.addText("line0", 0, 0, 100, 15)
                tbox.setText("Throttle")
                tbox = self.debug.addText("line1", 0, 15, 100, 15)
                tbox.setText("Turning")
                tbox = self.debug.addText("line2", 0, 30, 100, 15)
                tbox.setText("")
                tbox = self.debug.addText("line3", 0, 45, 100, 15)
                tbox.setText("")
           
            self.RegisterSmartZone(self.zone, 1)
           
        return AI.SuperAI.Activate(self, active)


The .py I made will be in NAR AI for all those with a python phobia, though it is really easy to do and can go in any .py.


Edit: Oh wait I'm taking S_M's showcase off topic again... must make comment on latest bot.


Why is that UHW a failbot?  Bad wedge?  Because it certainly looks dangerous enough to me with all those flamers and heavy plows.

To lack feeling is to be dead, but to act on every feeling is to be a child.
-Brandon Sanderson, The Way of Kings

Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #425 on: October 08, 2010, 07:49:15 AM »
I haven't tested the wedge, mainly because my computer can't handle it in battle.
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #426 on: October 12, 2010, 12:18:10 PM »
Ideas for bots plz.
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline FOTEPX

  • Your dad
  • Giga Heavyweight
  • Posts: 6797
  • Rep: 5
  • Thank you, meow.
    • Bamzookiman130
    • View Profile
    • Awards
  • Skype: f0tepx
  • Discord: Shima33 #9110
Re: SM's DSL off-topic-case
« Reply #427 on: October 12, 2010, 12:19:04 PM »
Ideas for bots plz.

LW/MW Bottom Spinner.


Currently listening to: Marblehead Johnson - The Bluetones

Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #428 on: October 12, 2010, 12:20:11 PM »
Done that already.
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline G.K.

  • *
  • Posts: 12156
  • Rep: 10
  • Striving for a good personal text since 1994.
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #429 on: October 12, 2010, 12:35:45 PM »
MW Killalot Drill VS
My above post explains everything about everything.

Host of: Wheely Tag, Back To The Beginnings, BTTB 2, BTTB 3, BTTB 4, & BTTB V.

Heavy Metal: Champion (Mockery of the Whole Concept)
Robotic International Wars Series 1: Champion (Minifridge 6)
RA2 Team Championships 1 & 2: Champion (High Speed Train & Upthrust - as part of Naryar's Not Quite Evil Council of Doom)

Runner Up in: The Amazing Rage (Team Fedex), R0B0NOVA (Zaphod Stock), Steel Warzone (Inception of Instability), Box of Nightmares (Gicquel), Wheely Tag (Minifridge the Second)

Clash Cubes IV: 5th place (Fretless)
BBEANS 6: Rumble Winner & 6th Place (Minifridge 4)

Offline J24

  • Ultra Heavyweight
  • Posts: 1568
  • Rep: 0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #430 on: October 12, 2010, 12:41:50 PM »
Pyramid Popup
<<< Stalk me on the Twitter! (... Please... I'm lonely)

4th place in COTT! My word...

Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #431 on: October 12, 2010, 12:54:19 PM »
*Goes to make pyramid popup*
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #432 on: October 12, 2010, 02:01:59 PM »
Made a SHW Wedged SnS/Popup hybrid which I will showcase tommorrow.
Have a guess at what it is like.
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline Naryar

  • Posts: 23278
  • Rep: 20
  • hybrids oui oui
    • http://www.youtube.com/us
  • Awards BOTM Winner
    • View Profile
    • Awards
  • Skype: TheMightyNaryar
Re: SM's DSL off-topic-case
« Reply #433 on: October 13, 2010, 02:24:36 AM »
Have a guess at what it is like.

Fail bot ?

Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #434 on: October 13, 2010, 11:29:28 AM »
Here it is:

Titanium 3 or something
Meant to spin and sweep under other wedges.
Works in concept but I need to tweak the idea, maybe using metal hinge wedges angled slightly forward.
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline NFX

  • *
  • Posts: 14035
  • Rep: 11
  • SliSliSliSliSliSliSliSli(0)
    • AwesomeFish921
  • Awards BOTM Winner
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
  • Skype: nfxtreme0992
Re: SM's DSL off-topic-case
« Reply #435 on: October 13, 2010, 11:33:38 AM »
I can kinda understand the concept, but I don't think it'll work in practice. I reckon the DSL bars will ride up the opponent's wedges before the Small Wedge components get a chance to sweep under them, and it might end up being gutripped fairly easily compared to a head-on attack. It was a good idea, but I don't think a SnS/Popup hybrid such as this one would work.
Co-creator of The RA2 Randomiser



Offline Squirrel_Monkey

  • Squirrel_Monkeyweight
  • *
  • Posts: 7587
  • Rep: 7
  • [Insert clever and witty comment here]
    • 0SquirrelMonkey0
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #436 on: October 13, 2010, 11:35:25 AM »
Well, I tested against DSL Snowjob and it worked. Now to test against wedged bots..
BTW, my lightweight version with metal hinge wedges outwedges Hredder 6.6 :P
Better than GK since 2009.
I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything

Offline G.K.

  • *
  • Posts: 12156
  • Rep: 10
  • Striving for a good personal text since 1994.
    • View Profile
    • Awards
Re: SM's DSL off-topic-case
« Reply #437 on: October 13, 2010, 11:43:01 AM »
I got an idea about this concept. Will work on it.
My above post explains everything about everything.

Host of: Wheely Tag, Back To The Beginnings, BTTB 2, BTTB 3, BTTB 4, & BTTB V.

Heavy Metal: Champion (Mockery of the Whole Concept)
Robotic International Wars Series 1: Champion (Minifridge 6)
RA2 Team Championships 1 & 2: Champion (High Speed Train & Upthrust - as part of Naryar's Not Quite Evil Council of Doom)

Runner Up in: The Amazing Rage (Team Fedex), R0B0NOVA (Zaphod Stock), Steel Warzone (Inception of Instability), Box of Nightmares (Gicquel), Wheely Tag (Minifridge the Second)

Clash Cubes IV: 5th place (Fretless)
BBEANS 6: Rumble Winner & 6th Place (Minifridge 4)

Offline Naryar

  • Posts: 23278
  • Rep: 20
  • hybrids oui oui
    • http://www.youtube.com/us
  • Awards BOTM Winner
    • View Profile
    • Awards
  • Skype: TheMightyNaryar
Re: SM's DSL off-topic-case
« Reply #438 on: October 14, 2010, 06:49:27 AM »
It won't work against any good wedge.
« Last Edit: October 14, 2010, 08:14:02 AM by Naryar »

Offline NFX

  • *
  • Posts: 14035
  • Rep: 11
  • SliSliSliSliSliSliSliSli(0)
    • AwesomeFish921
  • Awards BOTM Winner
    • View Profile
    • Awards
  • See profile for gamer tags: Yes
  • Skype: nfxtreme0992
Re: SM's DSL off-topic-case
« Reply #439 on: October 14, 2010, 07:42:58 AM »
I now have an idea.
Co-creator of The RA2 Randomiser