-
Notifications
You must be signed in to change notification settings - Fork 1
ファイルダウンロード
Reputeless edited this page Mar 14, 2017
·
4 revisions
# include <Siv3D.hpp>
void Main()
{
// インターネットに接続されているかをチェック
if (!Internet::IsConnected())
{
return;
}
const FilePath url = L"http://eoimages.gsfc.nasa.gov/images/imagerecords/1000/1133/AS17-148-22727.jpg";
const FilePath savePath = L"Tutorial-Download.jpg";
HTTPClient client;
// ダウンロード(同期)
if (!client.download(url, savePath))
{
return;
}
const Texture texture(savePath);
while (System::Update())
{
texture.draw();
}
}
# include <Siv3D.hpp>
void Main()
{
if (!Internet::IsConnected())
{
return;
}
const Font font(20);
const FilePath url = L"http://eoimages.gsfc.nasa.gov/images/imagerecords/4000/4882/AS11-44-6548_lrg.jpg";
const FilePath savePath = L"Tutorial-Download2.jpg";
HTTPClient client;
// ダウンロード(非同期)
if (!client.downloadAsync(url, savePath))
{
return;
}
// まだダウンロードされていないので、この時点では読み込まない
Texture texture;
while (System::Update())
{
if (texture)
{
texture.scale(0.5).draw();
}
if (Input::KeyC.clicked)
{
// 実行中のダウンロードの中止
client.cannelDownload();
}
const DownloadProgress progress = client.retreiveProgress();
if (progress.status == DownloadStatus::Working)
{
const double p = progress.getProgress().value_or(0.5);
RectF(p * 640, 80).draw();
font(0_dp, p * 100, L'%').drawCenter(400);
}
else if (progress.status == DownloadStatus::Succeeded)
{
texture = Texture(savePath);
}
else if (progress.status == DownloadStatus::None)
{
font(L"ダウンロード中のファイルはありません。").drawCenter(400);
}
}
}
- Siv3D の基本
- 図形を描く
- テクスチャを描く
- テキストを描く
- 文字列と数値の変換
- キーボード入力
- マウス入力
- サウンドの再生
- MIDI の再生
- ウィンドウと背景
- 図形のあたり判定
- 乱数
- ダイアログ
- ドラッグ & ドロップ
- アプリの状態
- テキストファイル
- INI, CSV, JSON
- バイナリファイル
- GUI
- アセット管理
- 画像編集
- Web カメラ
- マイク入力
- 経過時間の測定
- HSV カラー
- ファイルダウンロード
- 3D 描画
- 2D のレンダーステート
- 3D のレンダーステート
- パーティクル
- スクリーンショット
- アプリケーションの公開
- さらに学ぶには
- アプリランチャーを作ろう
- 音楽プレイヤーを作ろう
- 横スクロールゲームを作ろう
- ドット絵エディタを作ろう
- シーン遷移をサポートする SceneManager の使い方
- Siv3D ミニサンプル集
- タスクシステムを使う
- スケッチ
- 画像ビューアー
- オーディオスペクトラム
- マイク入力スペクトラム
- 文字色の反転
- 天気予報
- ドットお絵かき
- 15パズル
- ブロックくずし
- 時計
- 音楽プレイヤー
- ピアノ
- ライフゲーム
- シーン管理
- 地球
- 3Dシーン
- 3D交差判定
- Wooden Mirror
- シューティングゲーム
- Image to Polygon
- Sketch to Polygon
- 軌跡
- Plot3D
- テンポとピッチの変更
- 長方形の影
- Twitterクライアント
- Polygon to Mesh
- 3Dテキスト
- アプリ終了の確認
- 地形の生成
- アーカイブファイル
- GUIのアニメーション
- Aero Glassエフェクト
- Glitch
- リンクテキスト
- 付箋
- シーン切り替え(シルエット)
- MIDIシーケンサー
- 数つなぎ
- 画面を揺らす
- 対称定規
- aobench
- MIDIビジュアライザー
- 電卓
- 手書き文字認識
- 顔検出
- 音声合成
- Image to PhysicsBody