<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" >
  <channel>
  <title>Xenonのブログ！</title>
  <link>https://xenonblog.syoyu.net/</link>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="https://xenonblog.syoyu.net/RSS/" />
  <description></description>
  <lastBuildDate>Wed, 06 May 2020 12:44:40 GMT</lastBuildDate>
  <language>ja</language>
  <copyright>© Ninja Tools Inc.</copyright>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />

    <item>
    <title>新曲発表！！！！！！！</title>
    <description>
    <![CDATA[<div><span style="font-size: x-large;"><strong>なんとなんと！！わたくし、YouTubeに新曲をアップしたのです！！</strong></span></div>
そしてこの可愛らしい絵は遊離さんに描いていただきました！！そちらの方にもご注目ください！<br />
<a href="https://www.youtube.com/watch?v=_WSVtyj5leE&amp;lc=z22igdw50suxy55w404t1aokgdpgy34ob1qfgziw5gfibk0h00410" title="">キャンディレイン【初音ミクSweet】</a><br />
<iframe width="400" height="225" src="http://www.youtube.com/embed/_WSVtyj5leE" frameborder="0" allowfullscreen=""></iframe><br />
<span style="color: #000000;">どうです？なかなかいい感じの曲でしょう？<br />
じつはこの曲、４月から作り始めていたのですが、なかなか歌詞が思いつかなくて全然進まなかったので結局投稿したのは６月の終わりごろになってしまいました。<br />
それだけ苦労した甲斐もあって今回の曲は僕の<span style="color: #ff0000;"><strong><span style="font-size: x-large;">最高傑作</span></strong></span>です！！<br />
<strong>可愛い木琴のフレーズや、たまにスラップするベースも見どころですよ～。</strong></span>]]>
    </description>
    <category>音楽</category>
    <link>https://xenonblog.syoyu.net/musics/%E6%96%B0%E6%9B%B2%E7%99%BA%E8%A1%A8%EF%BC%81%EF%BC%81%EF%BC%81%EF%BC%81%EF%BC%81%EF%BC%81%EF%BC%81</link>
    <pubDate>Sun, 30 Jun 2019 03:36:41 GMT</pubDate>
    <guid isPermaLink="false">xenonblog.syoyu.net://entry/4</guid>
  </item>
    <item>
    <title>自動で迷路を作成！</title>
    <description>
    <![CDATA[Tiny Basic for Windowsで迷路を自動生成するプログラムをつくりました。<br />
棒倒し法というアルゴリズムをつかっています！<br />
棒倒し法というのは、<br />
<br />
横幅と高さが奇数の空間をつくる。<br />
&darr;<br />
壁で囲む<br />
&darr;<br />
X座標とY座標がそれぞれ奇数の壁と重ならないセルに基準となる壁（棒）を設置<br />
&darr;<br />
その棒を重ならないようにランダムな方向に倒す（このとき、1列目以外の棒は上には倒れない）<br />
&darr;<br />
繰り返す<br />
<br />
というアルゴリズムです！<br />
出来上がった迷路のサンプルがこちら&darr;<br />
<img alt="" src="//xenonblog.syoyu.net/File/61324e71.png" /> <br />
どうですか？<br />
棒倒し法は簡単な分、他のアルゴリズムと比べて迷路のクオリティが低いので、<br />
いつか壁伸ばし法や穴掘り法をためしてみたいですね。<br />
<br />
<br />
本体は&darr;からダウンロードできますよー！<br />
<br />
<a href="//xenonblog.syoyu.net/File/70761bb5.tbt" target="_blank">ダウンロード</a>]]>
    </description>
    <category>Tiny Basic For Windows</category>
    <link>https://xenonblog.syoyu.net/tbsic/%E8%87%AA%E5%8B%95%E3%81%A7%E8%BF%B7%E8%B7%AF%E3%82%92%E4%BD%9C%E6%88%90%EF%BC%81</link>
    <pubDate>Sun, 24 Mar 2019 03:27:14 GMT</pubDate>
    <guid isPermaLink="false">xenonblog.syoyu.net://entry/3</guid>
  </item>
    <item>
    <title>全部ぶちぬけ！(Tiny Basic for Windows)</title>
    <description>
    <![CDATA[<div>Tiny Basic for Windowsで簡単な射的ゲームを作りました！<br />
主人公は左から右へ自動的に動いて、Spaceキーで撃てます！<br />
2周全部的を撃ちぬいたらクリアです。逆に、一つでも残ったらアウト。<br />
弾は8発です。二週目に入ると補充されます。<br />
ビジーウェイトを使ってるからパソコンによって速さが違うかもしれないから、<br />
調整してみてください。<br />
以下が作ったゲームの本体です&darr;（これでなんか起こっても責任は負いかねます）<br />
<br />
Randomize<br />
gm=0</div>
<div>DIM matox(6)<br />
DIM matoy(6)<br />
public bstm<br />
GBackColor=0<br />
GScreen(480,240)<br />
010 GLocate(100,50)<br />
gm=0<br />
GForeColor=15<br />
GFontSize=30<br />
GPrint"全部ぶちぬけ！"<br />
GLocate(170,120)<br />
GFontSize=12<br />
GPrint"Spaceキー押せ"<br />
for i=0 to 2 step 0<br />
&nbsp;if inkey$=" " then<br />
&nbsp;i=3<br />
&nbsp;cls 2<br />
&nbsp;endif<br />
next i<br />
'タイトル終了<br />
020 sc=0<br />
print"GAME START"<br />
x=20<br />
y=190<br />
shot=8</div>
<div>if gm=2 then<br />
&nbsp;&nbsp;GLocate(170,110)<br />
GFontSize=12<br />
GPrint"げーむくりあ！"<br />
gm=0<br />
for i=0 to 2 step 0<br />
&nbsp;if inkey$=" " then<br />
&nbsp;i=3<br />
&nbsp;cls 2<br />
&nbsp;<br />
&nbsp;endif<br />
next i<br />
goto 010<br />
endif<br />
cls 2<br />
for i=0 to 6'的を設置<br />
&nbsp;matox(i)=int(rnd(1)*400)+60<br />
&nbsp;matoy(i)=int(rnd(1)*100)<br />
&nbsp;GLocate(matox(i),matoy(i))<br />
&nbsp;GPrint"◎"<br />
next i</div>
<div>for g=0 to 5 step 0<br />
&nbsp;x=x+1<br />
&nbsp;call bswt<br />
&nbsp;GLocate(x,y)<br />
&nbsp;GPrint"凸"<br />
&nbsp;line(x,y)-(x-5,y+16),0,bf<br />
&nbsp;<br />
&nbsp;if inkey$=" " then<br />
&nbsp;&nbsp;if shot&lt;&gt;0 then<br />
&nbsp;&nbsp;shot=shot-1<br />
&nbsp;&nbsp;line(x+6,y)-(x+6,0)<br />
&nbsp;&nbsp;for i=0 to 6'衝突判定<br />
&nbsp;&nbsp;&nbsp;if matox(i)&lt;x+6 and matox(i)+14&gt;x+6 then<br />
&nbsp;&nbsp;&nbsp;&nbsp;sc=sc+1<br />
&nbsp;&nbsp;&nbsp;&nbsp;print 7-sc<br />
&nbsp;&nbsp;&nbsp;&nbsp;if sc=7 then<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bstm=100000<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call bswt<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GLocate(180,120)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bstm=10000<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;gm=gm+1<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;goto 020<br />
&nbsp;&nbsp;&nbsp;&nbsp;end if<br />
&nbsp;&nbsp;&nbsp;&nbsp;matox(i)=0<br />
&nbsp;&nbsp;&nbsp;endif<br />
&nbsp;&nbsp;next i<br />
&nbsp;&nbsp;bstm=200000<br />
&nbsp;&nbsp;call bswt<br />
&nbsp;&nbsp;cls 2<br />
&nbsp;&nbsp;bstm=10000<br />
&nbsp;&nbsp;for i=0 to 6<br />
&nbsp;&nbsp;&nbsp;if matox(i)&lt;&gt;0 then<br />
&nbsp;&nbsp;&nbsp;&nbsp;GLocate(matox(i),matoy(i))<br />
&nbsp;&nbsp;&nbsp;&nbsp;GPrint"◎"<br />
&nbsp;&nbsp;&nbsp;endif<br />
&nbsp;&nbsp;next i<br />
&nbsp;endif<br />
&nbsp;end if<br />
&nbsp;GLocate(8,3)<br />
&nbsp;GPrint "残り弾数"<br />
&nbsp;GLocate(0,19)<br />
&nbsp;GPrint shot<br />
&nbsp;&nbsp;if sc&lt;&gt;7 and 480&lt;x then<br />
&nbsp;&nbsp;GLocate(170,110)<br />
GFontSize=12<br />
GPrint"げーむおーばー"<br />
&nbsp;&nbsp;for i=0 to 2 step 0<br />
&nbsp;&nbsp;if inkey$=" " then<br />
&nbsp;&nbsp;i=3<br />
&nbsp;&nbsp;cls 2<br />
&nbsp;&nbsp;endif<br />
&nbsp;&nbsp;next i<br />
&nbsp;&nbsp;bstm=10000<br />
&nbsp;&nbsp;goto 010<br />
&nbsp;endif<br />
next g</div>
<div>sub bswt<br />
for bs=0 to bstm<br />
next bs<br />
end sub</div>
<div></div>]]>
    </description>
    <category>ゲーム制作</category>
    <link>https://xenonblog.syoyu.net/%E3%82%B2%E3%83%BC%E3%83%A0%E5%88%B6%E4%BD%9C/tinybasic%E3%81%A7%E7%B0%A1%E5%8D%98%E3%81%AA%E3%82%B2%E3%83%BC%E3%83%A0%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%9F%E3%82%88%EF%BC%81</link>
    <pubDate>Sat, 16 Mar 2019 02:22:03 GMT</pubDate>
    <guid isPermaLink="false">xenonblog.syoyu.net://entry/2</guid>
  </item>
    <item>
    <title>ブログはじめました♪</title>
    <description>
    <![CDATA[こんにちは！Xenonです。ブログはじめました！<br />
自分用にちょっとした作曲やゲーム制作のこととか便利なサイトとかその日あったこととかを記録したりしようかなと思っています！<br />
ついでに皆さんに参考にしてもらえたらなと思っています。<br />
いつまで続くことやら&hellip;&hellip;。]]>
    </description>
    <category>未選択</category>
    <link>https://xenonblog.syoyu.net/%E6%9C%AA%E9%81%B8%E6%8A%9E/%E3%83%96%E3%83%AD%E3%82%B0%E3%81%AF%E3%81%98%E3%82%81%E3%81%BE%E3%81%97%E3%81%9F%E2%99%AA</link>
    <pubDate>Sat, 16 Mar 2019 01:49:58 GMT</pubDate>
    <guid isPermaLink="false">xenonblog.syoyu.net://entry/1</guid>
  </item>

    </channel>
</rss>