ฝนตกในอาคารของฉัน!


24

คำอธิบายการท้าทาย

คุณต้องแสดงการจำลองของฝนในสถานี

ในตัวอย่างที่ระบุด้านล่างการเพิ่ม 100 เม็ดฝนที่สุ่ม (ใช้ฟังก์ชั่นการสุ่มเริ่มต้นซึ่งภาษาของคุณมี) พิกัดรอ 0.2 วินาทีแล้ววาดใหม่อีกครั้งจนกว่าเวลาที่กำหนดจะหมดอายุ ตัวละครใด ๆ ที่สามารถใช้สำหรับการเป็นตัวแทนของน้ำฝน

พารามิเตอร์

  • รอเวลาระหว่างการวาดใหม่ในไม่กี่วินาที
  • เวลาที่ฝนจะมองเห็นได้ นี่เป็นเพียงจำนวนเต็มแทนจำนวนการวนซ้ำ [ดังนั้นเวลาสุทธิที่จะเห็นฝนตกคือจำนวนเต็มนี้คูณด้วยเวลารอ]
  • ข้อความที่จะแสดงเมื่อฝนสิ้นสุด (สิ่งนี้จะต้องอยู่กึ่งกลาง)
  • จำนวนเม็ดฝนที่จะแสดงบนหน้าจอ

กฎระเบียบ

  • ควรใช้ไบต์เดี่ยวแทนการหยดฝนและอาจเป็นอะไรก็ได้แม้แต่แมวและสุนัข
  • ไม่จำเป็นต้องตอบสนองต่อขนาดเทอร์มินัลซึ่งหมายความว่าคุณไม่จำเป็นต้องจัดการกับบั๊กสำหรับขนาดเทอร์มินัลที่หลากหลาย คุณสามารถระบุความกว้างและความสูงเทอร์มินัลด้วยตัวคุณเอง
  • ใช้กฎมาตรฐานของการเล่นกอล์ฟ

ตัวอย่างโค้ดและเอาต์พุต

นี่เป็นเวอร์ชั่นที่ไม่ได้เขียนที่เขียนใน python 2.7 โดยใช้ ncurses

import curses
import random
import time

myscreen = curses.initscr()
curses.curs_set(0) # no cursor please 
HEIGHT, WIDTH = myscreen.getmaxyx() 
RAIN = '/' # this is what my rain drop looks like 
TIME = 10 

def make_it_rain(window, tot_time, msg, wait_time, num_drops):
    """
    window    :: curses window 
    time      :: Total time for which it rains
    msg       :: Message displayed when it stops raining
    wait_time :: Time between redrawing scene 
    num_drops :: Number of rain drops in the scene 
    """
    for _ in range(tot_time):
        for i in range(num_drops):
            x,y=random.randint(1, HEIGHT-2),random.randint(1,WIDTH-2)       
            window.addstr(x,y,RAIN)
        window.refresh()
        time.sleep(wait_time)
        window.erase()

    window.refresh()
    window.addstr(HEIGHT/2, int(WIDTH/2.7), msg)


if __name__ == '__main__':
    make_it_rain(myscreen, TIME, 'IT HAS STOPPED RAINING!', 0.2, 100)
    myscreen.getch()
    curses.endwin()

ผลผลิต -

ป้อนคำอธิบายรูปภาพที่นี่


3
ในอนาคตแทนการโพสต์อีกครั้งโปรดแก้ไขต้นฉบับ หากผู้คนคิดว่ารายละเอียดมีความชัดเจนพวกเขาจะเสนอชื่อให้เปิดใหม่
ข้าวสาลีตัวช่วยสร้าง

6
ข้อความต้องอยู่กึ่งกลางหรือไม่ ฝนตกแบบสุ่มตำแหน่งเริ่มต้นของละอองมีความสำคัญหรือไม่? คุณวัดเวลาเป็นอย่างไร ในหน่วยมิลลิวินาทีวินาทีนาทีหรือไม่ "คะแนนพิเศษ" คืออะไร?
Magic Octopus Urn

1
ถ้าคุณA.ระบุหน่วย B.ระบุขนาดเทอร์มินัลหรือใช้เป็นอินพุต และC.ลบส่วนที่เกี่ยวกับคะแนนพิเศษ; ความท้าทายนี้จะได้รับการกำหนดที่ดีขึ้น
Magic Octopus Urn

เมื่อคุณพูดว่า "สุ่ม" เราสามารถสันนิษฐานได้ว่าหมายถึง"สุ่มอย่างสม่ำเสมอ"หรือไม่?
บาดเจ็บทางดิจิตอล

3
1 วันในกล่องทรายมักจะไม่เพียงพอ จำไว้ว่าผู้คนอยู่ที่นี่เพื่อการพักผ่อนหย่อนใจและจากเขตเวลาที่หลากหลาย - ไม่ควรมีการตอบรับทันที
บาดเจ็บทางระบบดิจิตอล

คำตอบ:


12

MATL , 52 ไบต์

xxx:"1GY.Xx2e3Z@25eHG>~47*cD]Xx12:~c!3G80yn-H/kZ"why

อินพุตอยู่ในลำดับนี้: หยุดชั่วคราวระหว่างการอัปเดตจำนวนหยดข้อความจำนวนการทำซ้ำ จอภาพมีขนาด 80 × 25 อักขระ (กำหนดค่าตายตัว)

GIF หรือไม่เกิดขึ้น! (ตัวอย่างกับปัจจัยการผลิต0.2, 100, 'THE END', 30)

ป้อนคำอธิบายรูปภาพที่นี่

หรือลองมันที่MATL ออนไลน์

คำอธิบาย

xxx      % Take first three inputs implicitly and delete them (but they get
         % copied into clipboard G)
:"       % Take fourth input implicitly. Repeat that many times
  1G     %   Push first input (pause time)
  Y.     %   Pause that many seconds
  Xx     %   Clear screen
  2e3    %   Push 2000 (number of chars in the monitor, 80*25)
  Z@     %   Push random permutation of the integers from 1 to 2000
  25e    %   Reshape as a 25×80 matrix, which contains the numbers from 1 to 2000
         %   in random positions
  HG     %   Push second input (number of drops)
  >~     %   Set numbers that are <= second input to 1, and the rest to 0
  47*c   %   Multiply by 47 (ASCII for '/') and convert to char. Char 0 will
         %   be displayed as a space
  D      %   Display
]        % End
Xx       % Clear screen
12:~     % Push row vector of twelve zeros
c!       % Convert to char and transpose. This will produce 12 lines containing
         % a space, to vertically center the message in the 25-row monitor
3G       % Push third input (message string)
80       % Push 80
yn       % Duplicate message string and push its length
-        % Subtract
H/k      % Divide by 2 and round down
Z"       % Push string of that many spaces, to horizontally center the message 
         % in the 80-column monitor
w        % Swap
h        % Concatenate horizontally
y        % Duplicate the column vector of 12 spaces to fill the monitor
         % Implicitly display

1
ฉันชอบมันจะจบลงในwhy:)
tkellehe

1
@tkellehe ฉันชอบคำอธิบายในโปรไฟล์ของคุณ :-)
Luis Mendo

1
ขอขอบคุณ. ภาษาของคุณสนุกกับการอ่านมาก (ใช่ฉันได้รับการสะกดรอยตามคุณMATLตอบฮ่า ๆ )
tkellehe

10

JavaScript (ES6), 268 261 ไบต์

t=
(o,f,d,r,m,g=(r,_,x=Math.random()*78|0,y=Math.random()*9|0)=>r?g(r-(d[y][x]<`/`),d[y][x]=`/`):d.map(a=>a.join``).join`
`)=>i=setInterval(_=>o.data=f--?g(r,d=[...Array(9)].map(_=>[...` `.repeat(78)])):`



`+` `.repeat(40-m.length/2,clearInterval(i))+m,d*1e3)
<input id=f size=10 placeholder="# of frames"><input id=d placeholder="Interval between frames"><input id=r size=10 placeholder="# of raindrops"><input id=m placeholder="End message"><input type=button value=Go onclick=t(o.firstChild,+f.value,+d.value,+r.value,m.value)><pre id=o>&nbsp;

อย่างน้อยบนเบราว์เซอร์ของฉันเอาต์พุตถูกออกแบบมาให้พอดีกับพื้นที่ของส่วนย่อยโดยไม่ต้อง "เต็มหน้า" ดังนั้นถ้าคุณขอเม็ดฝนมากกว่า 702 เม็ดมันจะพัง

แก้ไข: บันทึก 7 ไบต์โดยใช้โหนดข้อความเป็นพื้นที่แสดงผลของฉัน


setIntervalคุณสามารถบันทึกไม่กี่ไบต์โดยผ่านฟังก์ชั่นเป็นสตริงไป นอกจากนี้ทำไมคุณใช้textContentแทนinnerHTML?
ลูกา

@ L.Sernéการใช้ฟังก์ชั่นด้านในทำให้ฉันสามารถอ้างถึงตัวแปรในฟังก์ชั่นด้านนอก
Neil

โอ๊ะฉันไม่ดีไม่ได้สังเกตว่า
ลุค

8

R, 196 192 185 ไบต์

เพียงแค่รุ่นเยาะเย้ยฉันเขียนตามคำอธิบาย หวังว่ามันเป็นสิ่งที่ OP กำลังมองหาอยู่

บันทึกบางไบต์ด้วย @plannapus

f=function(w,t,m,n){for(i in 1:t){x=matrix(" ",100,23);x[sample(2300,n)]="/";cat("\f",rbind(x,"\n"),sep="");Sys.sleep(w)};cat("\f",g<-rep("\n",11),rep(" ",(100-nchar(m))/2),m,g,sep="")}

ข้อโต้แย้ง:

  • w: เวลารอระหว่างเฟรม
  • t: จำนวนเฟรมทั้งหมด
  • m: ข้อความที่กำหนดเอง
  • n: จำนวนฝนที่ตกลงมา

ตัวอย่าง

ทำไมดูเหมือนว่าฝนตก

แก้ไข: ฉันควรพูดถึงว่านี่เป็นคอนโซล R-studio ตัวละคร 23x100 ตัวของฉันเอง มิติจะถูก hardcoded ลงในฟังก์ชั่น แต่ในหลักการสามารถใช้getOption("width")เพื่อให้มีความยืดหยุ่นกับขนาดคอนโซล

ป้อนคำอธิบายรูปภาพที่นี่

Ungolfed และอธิบาย

f=function(w,t,m,n){
    for(i in 1:t){
        x=matrix(" ",100,23);             # Initialize matrix of console size
        x[sample(2300,n)]="/";            # Insert t randomly sampled "/"
        cat("\f",rbind(x,"\n"),sep="");   # Add newlines and print one frame
        Sys.sleep(w)                      # Sleep 
    };
    cat("\f",g<-rep("\n",11),rep(" ",(100-nchar(m))/2),m,g,sep="")  # Print centered msg
}

มันดูดีมาก! +1 และฉันไม่คิดว่ามันจะสูงขึ้นเพียงการรับรู้ของคุณฮ่า ๆ ๆ
hashcode55

@plannapus ตระหนักrep()ถึงการtimesโต้แย้งโดยอัตโนมัติดังนั้นไม่จำเป็นต้องมี บันทึกอีก 7 ไบต์!
Billywob

ทางออกที่ดีมาก คุณสามารถบันทึกหนึ่งไบต์โดยการผลักขนาดคอนโซลเพื่อฟังก์ชั่นการขัดแย้ง คุณสามารถบันทึกไบต์อื่นโดยใช้runifแทนsampleการสุ่มเมทริกซ์ เช่น:f=function(w,t,m,n,x,y){for(i in 1:t){r=matrix(" ",x,y);r[runif(n)*x*y]="/";cat("\f",rbind(r,"\n"),sep="");Sys.sleep(w)};cat("\f",g<-rep("\n",y/2),rep(" ",(x-nchar(m))/2),m,g,sep="")}
rturnbull

5

C 160 ไบต์

f(v,d,w,char *s){i,j;char c='/';for(i=0;i<v;i++){for(j=0;j<d;j++)printf("%*c",(rand()%100),c);fflush(stdout);sleep(w);}system("clear");printf("%*s\n",1000,s);}

v-Time the raindrops are visible in seconds.
d-Number of drops per iteration
w-Wait time in seconds, before the next iteration
s-String to be passed on once its done

เวอร์ชันที่ไม่ถูกปรับแต่ง:

void f(int v, int d, int w,char *s)
{ 

   char c='/';
   for(int i=0;i<v;i++)
   { 
      for(int j=0;j<d;j++)
         printf("%*c",(rand()%100),c);

      fflush(stdout);
      sleep(w); 
   }   
   system("clear");
   printf("%*s\n", 1000,s);
}

ทดสอบบนเทอร์มินัลของฉัน

v - 5 seconds
d - 100 drops
w - 1 second wait time
s - "Raining Blood" :)

4

R, 163 ตัวอักษร

f=function(w,t,n,m){for(i in 1:t){cat("\f",sample(rep(c("/"," "),c(n,1920-n))),sep="");Sys.sleep(w)};cat("\f",g<-rep("\n",12),rep(" ",(80-nchar(m))/2),m,g,sep="")}

ด้วยการเยื้องและการขึ้นบรรทัดใหม่:

f=function(w,t,n,m){
    for(i in 1:t){
        cat("\f",sample(rep(c("/"," "),c(n,1920-n))),sep="")
        Sys.sleep(w)
    }
    cat("\f",g<-rep("\n",12),rep(" ",(80-nchar(m))/2),m,g,sep="")
}

มันปรับให้มีขนาดเทอร์มินัล 24 บรรทัด 80 คอลัมน์ wคือเวลาที่รอtจำนวนเฟรมnจำนวนเม็ดฝนและmข้อความสุดท้าย

มันแตกต่างจาก@ คำตอบ billywob ของการใช้งานที่แตกต่างกันของsample: ถ้าขนาดเอาท์พุทถูกละไว้sampleจะช่วยให้การเปลี่ยนแปลงของเวกเตอร์อินพุต (ที่นี่เวกเตอร์ที่มีจำนวนที่จำเป็นของเม็ดฝนและจำนวนที่สอดคล้องกันของช่องว่างขอบคุณความจริงที่ว่าข้อโต้แย้งtimesของ ฟังก์ชั่นrepเป็น vectorized) เมื่อขนาดของเวกเตอร์ตรงกับขนาดของหน้าจอจึงไม่จำเป็นต้องเพิ่มบรรทัดใหม่หรือบังคับให้รูปร่างเข้าไปในเมทริกซ์

Gif ของผลผลิต


3

โหนด: 691 158 148 ไบต์

แก้ไข

ตามที่ร้องขอคุณสมบัติเพิ่มเติมถูกลบและ golf'd

s=[];setInterval(()=>{s=s.slice(L='',9);for(;!L[30];)L+=' |'[Math.random()*10&1];s.unshift(L);console.log("\u001b[2J\u001b[0;0H"+s.join('\n'))},99)

กฎระบุไม่สนใจขนาด แต่เวอร์ชันนี้มีข้อผิดพลาดสำหรับเฟรมสองสามเฟรมแรก มันคือ129 ไบต์

s='';setInterval(()=>{for(s='\n'+s.slice(0,290);!s[300];)s=' |'[Math.random()*10&1]+s;console.log("\u001b[2J\u001b[0;0H"+s)},99)

คำตอบก่อนหน้า

อาจไม่ใช่การเล่นกอล์ฟที่ดีที่สุด แต่ฉันก็พาไปเล็กน้อย มันมีทิศทางลมเป็นตัวเลือกและปัจจัยฝน

node rain.js 0 0.3

var H=process.stdout.rows-2, W=process.stdout.columns,wnd=(arg=process.argv)[2]||0, rf=arg[3]||0.3, s=[];
let clr=()=>{ console.log("\u001b[2J\u001b[0;0H") }
let nc=()=>{ return ~~(Math.random()*1+rf) }
let nl=()=>{ L=[];for(i=0;i<W;i++)L.push(nc()); return L}
let itrl=(l)=>{ for(w=0;w<wnd;w++){l.pop();l.unshift(nc())}for(w=0;w>wnd;w--){l.shift();l.push(nc())};return l }
let itrs=()=>{ if(s.length>H)s.pop();s.unshift(nl());s.map(v=>itrl(v)) }
let d=(c,i)=>{if(!c)return ' ';if(i==H)return '*';if(wnd<0)return '/';if(wnd>0)return '\\';return '|'}
let drw=(s)=>{ console.log(s.map((v,i)=>{ return v.map(  c=>d(c,i)  ).join('') }).join('\r\n')) }
setInterval(()=>{itrs();clr();drw(s)},100)

ดู webm ของมันทำงานที่นี่


2

Noodelขนาดไม่น้อยกว่า 44 ไบต์

ฉันมีข้อความอยู่ตรงกลางในรายการสิ่งที่ต้องทำตั้งแต่ฉันสร้างภาษา ... แต่ฉันขี้เกียจและไม่เพิ่มจนกระทั่งหลังจากความท้าทายนี้ ดังนั้นที่นี่ฉันไม่ได้แข่งขัน แต่สนุกกับความท้าทาย :)

ØGQÆ×Øæ3/×Æ3I_ȥ⁻¤×⁺Æ1Ḷḋŀ÷25¶İÇæḍ€Æ1uụC¶×12⁺ß

คอนโซลมีขนาดฮาร์ดโค้ดถึง 25x50 ซึ่งดูไม่ดีในตัวแก้ไขออนไลน์ แต่ทำเพื่อตัวอย่าง

ลองมัน:)


มันทำงานอย่างไร

Ø                                            # Pushes all of the inputs from the stack directly back into the stdin since it is the first token.

 GQÆ×Ø                                       # Turns the seconds into milliseconds since can only delay by milliseconds.
 GQ                                          # Pushes on the string "GQ" onto the top of the stack.
   Æ                                         # Consumes from stdin the value in the front and pushes it onto the stack which is the number of seconds to delay.
    ×                                        # Multiplies the two items on top of the stack.
                                             # Since the top of the stack is a number, the second parameter will be converted into a number. But, this will fail for the string "GQ" therein treated as a base 98 number producing 1000.
     Ø                                       # Pops off the new value, and pushes it into the front of stdin.

      æ3/×Æ3I_ȥ⁻¤×⁺                          # Creates the correct amount of rain drops and spaces to be displayed in a 50x25 console.
      æ3                                     # Copies the forth parameter (the number of rain drops).
        /                                    # Pushes the character "/" as the rain drop character.
         ×                                   # Repeats the rain drop character the specified number of times provided.
          Æ3                                 # Consumes the number of rain drops from stdin.
            I_                               # Pushes the string "I_" onto the stack.
              ȥ                              # Converts the string into a number as if it were a base 98 number producing 25 * 50 = 1250.
               ⁻                             # Subtract 1250 - [number rain drops] to get the number of spaces.
                ¤                            # Pushes on the string "¤" which for Noodel is a space.
                 ×                           # Replicate the "¤" that number of times.
                  ⁺                          # Concatenate the spaces with the rain drops.

                   Æ1Ḷḋŀ÷25¬İÇæḍ€            # Handles the animation of the rain drops.
                   Æ1                        # Consumes and pushes on the number of times to loop the animation.
                     Ḷ                       # Pops off the number of times to loop and loops the following code that many times.
                      ḋ                      # Duplicate the string with the rain drops and spaces.
                       ŀ                     # Shuffle the string using Fisher-Yates algorithm.
                        ÷25                  # Divide it into 25 equal parts and push on an array containing those parts.
                           ¶                 # Pushes on the string "¶" which is a new line.
                            İ                # Join the array by the given character.
                             Ç               # Clear the screen and display the rain.
                              æ              # Copy what is on the front of stdin onto the stack which is the number of milliseconds to delay.
                               ḍ             # Delay for the specified number of milliseconds.
                                €            # End of the loop.

                                 Æ1uụC¶×12⁺ß # Creates the centered text that is displayed at the end.
                                 Æ1          # Pushes on the final output string.
                                   u         # Pushes on the string "u" onto the top.
                                    ụC       # Convert the string on the top of the stack to an integer (which will fail and default to base 98 which is 50) then center the input string based off of that width.
                                      ¶      # Push on a the string "¶" which is a new line.
                                       ×12   # Repeat it 12 times.
                                          ⁺  # Append the input string that has been centered to the new lines.
                                           ß # Clear the screen.
                                             # Implicitly push on what is on the top of the stack which is the final output.

<div id="noodel" code="ØGQÆ×Øæ3/×Æ3I_ȥ⁻¤×⁺Æ1Ḷḋŀ÷25¶İÇæḍ€Æ1uụC¶×12⁺ß" input='0.2, 50, "Game Over", 30' cols="50" rows="25"></div>

<script src="https://tkellehe.github.io/noodel/noodel-latest.js"></script>
<script src="https://tkellehe.github.io/noodel/ppcg.min.js"></script>


1
อ่าเป็นภาษาเยี่ยมที่มีในกล่องเครื่องมือของฉันฮ่า ๆ ยังไงก็ตามดีใจที่คุณชอบความท้าทาย :) +1
hashcode55

2

Ruby + GNU Core Utils, 169 ไบต์

พารามิเตอร์ของฟังก์ชันคือเวลารอจำนวนการทำซ้ำข้อความและจำนวนเม็ดฝนตามลำดับ บรรทัดใหม่สำหรับการอ่าน

แกน Utils เป็นสิ่งที่จำเป็นสำหรับการและtputclear

->w,t,m,n{x=`tput cols`.to_i;z=x*h=`tput lines`.to_i
t.times{s=' '*z;[*0...z].sample(n).map{|i|s[i]=?/};puts`clear`+s;sleep w}
puts`clear`+$/*(h/2),' '*(x/2-m.size/2)+m}

1

Python 2.7, 254 251 ไบต์

นี่คือความพยายามของฉันเองโดยไม่ใช้ ncurses

from time import*;from random import*;u=range;y=randint
def m(t,m,w,n):
    for _ in u(t):
        r=[[' 'for _ in u(40)]for _ in u(40)]
        for i in u(n):r[y(0,39)][y(0,39)]='/'
        print'\n'.join(map(lambda k:' '.join(k),r));sleep(w);print '<esc>[2J'
    print' '*33+m

ขอบคุณ @ErikTheOutgolfer สำหรับการแก้ไขและบันทึกไบต์


คุณไม่สามารถใส่การforวนซ้ำในหนึ่งบรรทัด (เหมือนที่คุณมี40)];for i in u() คุณต้องใช้ตัวอักษร ESC ในตัว'[2J'ด้วย u(n): r[yนอกจากนี้ยังมีช่องว่างใน ฉันไม่รู้ว่าคุณนับ 249 อย่างไร ทุกประเด็นที่ผมพบว่าได้รับการแก้ไขที่นี่
Erik the Outgolfer

รหัสที่ฉันโพสต์นั้นใช้งานได้สำหรับฉัน และใช่ฉันคิดว่ามันผิดจริงฉันไม่ได้นับพื้นที่สีขาวเยื้องฉันไม่รู้เกี่ยวกับมัน ขอบคุณสำหรับลิงค์! ฉันจะแก้ไข
hashcode55

@EriktheOutgolfer โอ้และใช่เกี่ยวกับคำว่า ESC char ไม่จำเป็นต้องมีลำดับการหลบหนี เพียงพิมพ์ 'ESC [2J' อย่างมีประสิทธิภาพซึ่งเป็นลำดับ escape แบบ ansi สำหรับการล้างหน้าจอ มันไม่ได้รีเซ็ตตำแหน่งเคอร์เซอร์แม้ว่า
hashcode55

คุณสามารถตีมันได้มากขึ้น :)แต่คุณต้องเพิ่มโน้ตด้านล่างรหัสของคุณโดยระบุว่า<esc>หมายถึงไบต์ 0x1B ESC ตามตัวอักษร จำนวนไบต์คือ242ไม่ใช่ 246
Erik the Outgolfer

@EriktheOutgolfer โอ้ขอบคุณมาก!
hashcode55

1

SmileBASIC ขนาด 114 ไบต์

INPUT W,T,M$,N
FOR I=1TO T
VSYNC W*60CLS
FOR J=1TO N
LOCATE RND(50),RND(30)?7;
NEXT
NEXT
LOCATE 25-LEN(M$)/2,15?M$

ขนาดคอนโซลอยู่เสมอ 50 * 30


1

Perl 5, 156 ไบต์

154 รหัสไบต์ + -pl2

$M=$_;$W=<>;$I=<>;$R=<>;$_=$"x8e3;{eval'$-=rand 8e3;s!.{$-}\K !/!;'x$R;print;select$a,$a,$a,$W;y!/! !;--$I&&redo}$-=3920-($l=length$M)/2;s;.{$-}\K.{$l};$M

ใช้ขนาดคงที่ 160x50

ดูออนไลน์!


Perl 5, 203 ไบต์

201 รหัสไบต์ + -pl2

$M=$_;$W=<>;$I=<>;$R=<>;$_=$"x($z=($x=`tput cols`)*($y=`tput lines`));{eval'$-=rand$z;s!.{$-}\K !/!;'x$R;print;select$a,$a,$a,$W;y!/! !;--$I&&redo}$-=$x*($y+!($y%2))/2-($l=length$M)/2;s;.{$-}\K.{$l};$M

ใช้tputเพื่อกำหนดขนาดของเทอร์มินัล

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.