自分でビールを飲む


26

それは金曜日だ!つまり、ビールの時間です!
残念ながら、今日はビールを飲む代わりにゴルフをします。:(

チャレンジ

ビールを出して飲む。一口飲む量によって出力が変わります。

一口

プログラムは1つの入力文字列を受け取る必要があります。この文字列は、連結されたsips のみで構成できます。
入力が空の文字列である場合、泡を含む完全なビールグラスを出力する必要があります。

一口飲むほど、ビールグラスは空っぽになります。

一口飲むと、ビールにはまだ泡が残っています。このフォームの出力は常に同じです(例を参照)。

1口飲む場合は、ビールグラスを出力し、その後に改行と文字列を出力する必要がありますYuck, foam.

1杯以上飲むと、ビアグラスに泡が含まれなくなり、グラスの上部が見えるようになります。泡を飲むことは一口としてカウントされます。

6杯以上飲む場合は、空のビールグラスを出力し、その後に改行と文字列を続けますBurp

飲むたびに、ビールのグラスが空になります。ビールグラスの充満度は、ビールの泡の量°°)によって異なります。あなたが泡の後に取る一口ごとに、泡のラインを削除する必要があります。ビールの各ラインには、最小1と最大の5バブルを含めることができます。これらのバブルの位置は100%ランダムでなければなりません。

入力

empty input string, or no input at all

出力

  oo  o oo 
 oooooooooooo
o|  °     ° |\
 |     °    | \
 | °°    °  |} |
 |  °    °  | /
 |     °   °|/
 \__________/

入力

sip sip sip

出力

 ____________
 |          |\
 |          | \
 |     °    |} |
 |° °     ° | /
 | °    °   |/
 \__________/

入力

sip sip sip sip sip sip sip sip sip sip

出力

 ____________
 |          |\
 |          | \
 |          |} |
 |          | /
 |          |/
 \__________/
Burp

このペーストビンには、入力と出力のリストが含まれています。ビアグラスの泡はランダムでなければならないことに注意してください!

得点

これは、バイト単位の最短コードが勝ちです!

幸せな飲みゴルフ!


あなたは、ノートにしたいかもしれない°コードポイント176を持つキャラクターである
マーティン・エンダー

2
より具体的には、Latin-1およびUnicodeの176。
メゴ

1および6+以外の入力の末尾の改行は許容されますか?
ETHproductions

@ETHproductionsはい。ラップトップ上のときに編集します
Bassdrop Cumberwubwubwub

1
マグカップの出力は変わらないはずです。各行の泡の量は、実行ごとに異なります。挑戦のランダムな一部だ唯一の各ライン上のバブル、または5まで存在でき
Bassdrop Cumberwubwubwub

回答:


9

Japt、189 バイト

これを適切に機能させようとしている間、私はほとんど狂っていました...

U?S+'_pC +R:"  oo  o oo\n "+'opC +"\no")+"\\, \\,} |, /,/"q', £(V=(!Y«U?"|: |" +SpA +'|+X,(1+5*Mr)o mZ=>Ul <Y*4+4©(V=Vh2+A*Mr ,'° ),V)qR +"\n \\"+'_pA +'/+R+(Ul ¥3?"Yuck, foam.":Ug22 ?`B¨p:

オンラインでお試しください!

(注:このプログラムは古いバージョンのJapt向けに作成されたものであり、現在最新バージョンでは動作しません。これを回避するには、URLで古いバージョンを指定します。残念ながら、これは右上のコードボックス動作しません。)

これは、はるかに私が今までJAPTで書かれている最長のプログラム。内訳は次のとおりです。

ステップ1:ビールジョッキの上部を作成します。

U?S+'_pC +R:"  oo  o oo\n "+'opC +"\no")

           // Implicit: U = input string
           // Begin the ASCII art with:
U?S+       //  If U is not an empty string, a space +
'_pC +R:   //   "_".repeat(12) + a newline.
:"..."+    //  Otherwise, this string +
'opC +     //   "o".repeat(12) +
"\no")     //   a newline and an "o".

Uが空の文字列の場合、次のようになります。

  oo  o oo
 oooooooooooo
o

それ以外の場合、これにより以下が行われます。

 ____________

ステップ2:マグカップの中央の行を作成します。

+"\\, \\,} |, /,/"q', £(V=(!Y«U?"|: |" +SpA +'|+X,

+"..."    // Add to the previous string: this string,
q', £(    // split at commas, with each item X and its index Y mapped to:
V=(       //  Set variable V to the result of concatenating:
!Y«U?     //   If Y is 0 and U is an empty string,
"|: |"    //    "|"; otherwise, " |";
+SpA      //   10 spaces,
'|+X,     //   "|", and X.

これにより、前の文字列に加えて次の結果が得られます。

 |          |\
 |          | \
 |          |} |
 |          | /
 |          |/

ステップ3:泡を追加します。

(1+5*Mr)o mZ=>Ul <Y*4+4©(V=Vh2+A*Mr ,'° ),V)

            // Note: We're still looping through the five rows at this point.
(1+5*Mr)    // Generate a random integer between 1 and 5.
o           // Create an array of this many integers, starting at 0.
mZ=>        // Map each item Z in this range to:
Ul <Y*4+4©  //  If the length of U is less than Y*4+4,
            //  (in other words, if there's less than Y+1 "sip"s)
(V=Vh   '°  //   Insert "°" at position
2+A*Mr      //    2 + random number between 0 and 9.
),V)qR      // Finally, return V, and join the five rows with newlines.

この時点で、マグは次のようになります。

 ____________
 |          |\
 |          | \
 |     °    |} |
 |° °     ° | /
 | °    °   |/

ステップ4:最終行とオプションのテキストを追加します。

+"\n \\"+'_pA +'/+R+(Ul ¥3?"Yuck, foam.":Ug22 ?`B¨p:

+"\n \\"    // Add a newline and " \".
+'_pA       // Add 10 "_"s.
+'/+R       // Add a slash and a newline.
+(Ul ¥3?    // If the length of U is 3 (i.e. 1 "sip"),
"..."       //  add the string "Yuck, foam.".
:Ug22 ?     // Otherwise, if U has a character at position 22 (six or more "sip"s),
`B¨p        //  decompress this string ("Burp") and add it.
:           // Otherwise, add nothing.

これで、すべてを出力に送信する準備が整いました。これは自動的に行われます。ご質問がある場合は、お気軽にお問い合わせください!


3日が経ちました。RIP脳
Bassdrop Cumberwubwubwub

@Bas昨日はほとんど書かれていましたが、ブラウザのように死んだのは私の脳ではありませんでした;)今日書かれます。
-ETHproductions

私はあなたの脳がまだ機能している、と私は、このコードの<S>怪物</ S>美しい作品の説明を参照して楽しみにしていてくれてうれしい
Bassdrop Cumberwubwubwub

1
@Basの説明の準備ができました:-)
ETHproductions

4

JavaScript(ES6)、283 281バイト

s=>` `+(u=`_________`,(s=s&&s.split` `.length)?u+`___
 `:` oo  o oo
 oooooooooooo
o`)+(i=0,l=q=>`|`+[...u].map(_=>Math.random()>.8&i>=s&&b++<5?`°`:` `,b=0,i++).join``+(b|i<s?` `:`°`)+`|`+q+`
 `)`\\`+l` \\`+l`} |`+l` /`+l`/`+`\\`+u+`_/
`+(s&&s<2?`Yuck, foam.`:s>5?`Burp`:``)

説明

s=>
  ` `+(u=`_________`,        // u = 9 underscores
  (s=s&&s.split` `.length)   // s = number of sips
    ?u+`_
 `:` oo  o oo
 oooooooooooo
o`)                          // print glass top or foam

  // Print glass lines
  +(i=0,                     // i = line number
    l=q=>                    // l = print glass line
      `|`+[...u].map(_=>     // iterate 9 times
        Math.random()>.8     // should we put a bubble here?
        &i>=s                // has this line already been sipped?
        &&b++<5              // have we already placed 5 bubbles?
          ?`°`:` `,          // if not, place the bubble!
        b=0,                 // reset the number of placed bubbles
        i++                  // increment the line counter
      ).join``               // put the 9 spaces and bubbles together
      +(b|i<s?` `:`°`)       // place a bubble at 10 if none were placed
      +`|`+q+`
 `                           // print the suffix of this glass line
  )`\\`
  +l` \\`
  +l`} |`
  +l` /`
  +l`/`

  +`\\`+u+`_/
`                            // print the bottom of the glass
  +(s&&s<2?`Yuck, foam.`
    :s>5?`Burp`:``)          // print the message

テスト

Input: <input type="text" id="sips" /><button onclick="result.innerHTML=(

s=>` `+(u=`_________`,(s=s&&s.split` `.length)?u+`___
 `:` oo  o oo
 oooooooooooo
o`)+(i=0,l=q=>`|`+[...u].map(_=>Math.random()>.8&i>=s&&b++<5?`°`:` `,b=0,i++).join``+(b|i<s?` `:`°`)+`|`+q+`
 `)`\\`+l` \\`+l`} |`+l` /`+l`/`+`\\`+u+`_/
`+(s&&s<2?`Yuck, foam.`:s>5?`Burp`:``)

)(sips.value)">Go</button><pre id="result"></pre>


1

PHP、277 265 263バイト

1バイトの改行を想定しています。1を追加14し、17Windows上で。

$r=str_pad(($i=$argc-1)?"":"  oo  o oo",16).str_pad("
 ",14,_o[!$i])."   ".($s="
 |          |")."\\  $s \\ $s} |$s / $s/
 \__________/
 ".($i<6?$i-1?"":"Yuck, foam.":burp)if(!$i){$r[34]=o;$i=1;}for(;$i++<6;)for($n=rand(1,5);$n--;)$r[17*$i+rand(2,11)]="°";echo$r;

で実行し-rます。改行にはエスケープが必要な場合があります。

壊す

// draw beer glass
$r=
    // first line: empty or foam
    str_pad(($i=$argc-1)?"":"  oo  o oo",16)
    // second line: top or foam
    .str_pad("\n ",14,_o[!$i])
    // other lines: empty glass+bottom
    ."   ".($s="\n |          |")."\\  $s \\ $s} |$s / $s/\n \__________/\n"
    // lyrics
    .($i<6?$i-1?"":"Yuck, foam.":burp)
;

// add foam left to the glass
if(!$i){$r[34]=o;$i=1;}

// add bubbles
for(;$i++<6;)
    for($n=rand(1,5);$n--;)
        $r[17*$i+rand(2,11)]="°";

// output
echo$r;

こんにちは、時間内にあなたの質問に答えられなかったため申し訳ありませんが、泡を修正する必要があります。ただし、バイトカウントが向上する場合は、ランダムである可能性もあります。はっきりので、あなたの利点にそれを使用して、指定しないための私の悪い
Bassdrop Cumberwubwubwub

@BassdropCumberwubwubwub実際にランダムな泡のコスト。私はコーディング中に誰もがそれを修正し、最初はランダムに私のものを保持しているのを見ました。
タイタス
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.