2011年9月30日 星期五
[遊戲開箱介紹] 真三六 - 猛將傳 (賺) 中/日文
今年第一次解成就解到廢寢忘食!
這次的遊戲性與本傳相比各有高低。
猛將傳除了追加許多遊戲動作外也增添了新的遊戲模式。
以太守與副將搭檔的英傑傳(Legend Mode)!
特殊玩法&線上排行榜的挑戰模式 (Challenge Mode)!
延續本傳的全武將故事模式(Mix Joy)!
2011年9月24日 星期六
電蝦版 2011秋季版聚
本次版聚特別辦在桃園,所以我起了大早(?)出了桃火後馬上就給鈴木打了電話。
湊滿四人後便招了計程車,往全漢的新據點移動。
這次的版聚算是愛德華(大大)推動的,因為他的公司OCZ也在桃園而且正好離全漢的新據點很接近。
所以很特別的成了本次版聚的唯二廠商。
2011年9月21日 星期三
2011年9月19日 星期一
[Unboxing] 化物語 DVD 卷3&4
這兩個禮拜我一口氣把尖端代理的傷物語跟化物語上、下給看完了!
動畫版大概是一、兩年前的東西了。
這次把小說版看完後讓我忍不住想回味一下配音的氛圍!
2011年9月18日 星期日
[Unboxing] SuperNatural : The Animation Series (超自然檔案:動畫版)
今天提早回到台北,晚餐閒來無事走到光華撿了這片DVD回來!
台灣由得利影視代理,發音有兩種:本尊英語配音 5.1聲道;聲優日語配音 2聲道
翻譯字幕也是多國語言:繁中、英文、泰文、西班牙、法文。
PS: 繁中字幕是配合日語發音的翻譯......
2011年9月8日 星期四
[MEMO] C++ 輸出至檔案
#include<iostream>
#include<fstream>
int main(){
using namespace std;
char automobile[50];
int year;
double a_price,d_price;
ofstream outFile; // 產生輸出物件,簡單來說就是 cout 區段的複製。(將 cout 取代為 outFile )
outFile.open("carinfo.txt"); // open() 函數與檔案建立關聯。
cout << "Enter the make and model of automobile: ";
cin.getline(automobile, 50);
cout << "Enter the model year: ";
cin >> year;
cout << "Enter the original asking price: ";
cin >> a_price;
d_price = 0.913* a_price;
//
cout.precision(2);
cout.setf(ios_base::showpoint);
cout << fixed; // 說明請見連結 http://it-easy.tw/cout-float/
cout << "Make and model: "<< automobile << endl;
cout << "Was asking $" << a_price << endl;
cout << "Now asking $" << d_price << endl;
//
outFile << fixed;
outFile.precision(2);
outFile.setf(ios_base::showpoint);
outFile << "Make and model: " << automobile << endl;
outFile << "Year: " << year << endl;
cout << "Was asking $" << a_price << endl;
cout << "Now asking $" << d_price << endl;
outFile.close(); // 程式完成檔案的使用後,關閉連結。
system("pause");
return 0;
}
2011年9月6日 星期二
CV 原田 瞳 (原田ひとみ) 隱藏的胸部 (巨乳)
CV 原田 瞳 (原田ひとみ) 隱藏的胸部
人家是正妹配音員還有一對好胸部!!!! (毆
同時也是個淑女......
原田的 twitter : http://twitter.com/#!/vhitomin
2011年9月5日 星期一
2011年9月2日 星期五
[memo] C++ Ex.5-20
#include<iostream>
int main(){
using namespace std;
const int Cities = 5;
const int Years = 4;
const char * cities[Cities] =
{
"Gribble City",
"Gribbletown",
"New Gribble",
"San Gribble",
"Gribble Vista"
};
int maxtemps[Years][Cities] =
{
{95,99,86,100,104},
{95,97,90,106,102},
{96,100,940,107,105},
{97,102,89,108,104}
};
cout << "Maximum temperatures for 2002-2005\n\n";
for(int city =0;city<Cities;++city)
{
cout << cities[city] << ":\t";
for(int year=0;year<Years;++year)
{
cout << maxtemps[year][city] << "\t";
}
cout << endl;
}
system("pause");
return 0;
}
2011年9月1日 星期四
HMD 頭戴式顯示器 整理
第一次接觸到這名詞是在PS2時代的一款遊戲...... 「 .hack // 」
遊戲的世界觀先略過
重點是他們所使用的科技發展採用了頭戴式顯示器取代傳統螢幕!
「頭戴式顯示器」發展已經很多年了......
連名詞也隨著時代改變過,隨著東西越做越小,"頭戴式"這名詞有點含糊不清。
FMD HMD ......
Head Mounted Display
Face Mounted Display