37
32

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Apple Silicon搭載MacでDirectX 12が動かせるらしいので試します。なぜならApple Silicon搭載MacでDirectX 12が動かせるらしいからです。

Posted at

日本語で要約してくれてる人

元ツイ

やってみた

正式リリース前です。自己責任でお願いします。

ターミナルを開いて、Rosseta2でx86_64に切り替えます。x86_64版のHomebrewが必要なので、合わせてダウンロードしておきましょう。

terminal
arch -x86_64 zsh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

arm64版のHomebrewは /opt/homebrew/bin/brew にある一方、x86_64版は /usr/local/Homebrew/bin/brew にインストールされます。今回はPATHをいじるのも面倒なので、そのままバイナリを指定して実行します。かなり時間がかかるので、なかなか終わらなくても焦らないでください。

terminal
/usr/local/Homebrew/bin/brew tap apple/homebrew-apple
/usr/local/Homebrew/bin/brew install game-porting-toolkit

インストールが完了したら以下のコマンドを実行します。 ~/game の部分は好きなフォルダを指定してください。

terminal
WINEPREFIX=~/game `/usr/local/bin/brew --prefix game-porting-toolkit`/bin/wine64 winecfg

上記コマンドを実行するとポップアップが現れるので、Windowsのバージョンを10に変更してOKを押します。

次に以下のリンクからGame porting toolkit betaをダウンロードします。
https://developer.apple.com/download/all/?q=game%20porting%20toolkit

ダウンロードしたら中身を全て適当な場所(以下では ~/apple-gpt とします)にコピーします。

さて、それが済んだら以下のコマンドで最後の準備が完了します。もちろん ~/apple-gpt の部分は適宜読み替えてください。

terminal
ditto ~/apple-gpt/lib `/usr/local/bin/brew --prefix game-porting-toolkit`/lib/

これで準備は完了です。以下のコマンドで好きなゲームを起動してみてください。~/apple-gpt~/game は適宜読み替えてください。

terminal
~/apple-gpt/gameportingtoolkit ~/game "YOUR_GAME.exe"

ゲームが起動したら気が済むまで遊びましょう。

37
32
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
37
32

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?