Upload 7 files
Browse files- .gitattributes +3 -0
- GameInterface.tsx.txt +60 -0
- MATRIX_1.0_WHITE_PAPER.pdf +3 -0
- Matrix 3.0 Roadmap Full EN.pdf +3 -0
- Matrix_2.0_Green_Paper(English).pdf +3 -0
- README-builds.html +0 -0
- q1blue-gptengineer-krrhvw2remc.tar.html +3 -0
- videoworldsimulators2024.bib +6 -0
.gitattributes
CHANGED
|
@@ -32,3 +32,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
Matrix[[:space:]]3.0[[:space:]]Roadmap[[:space:]]Full[[:space:]]EN.pdf filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
MATRIX_1.0_WHITE_PAPER.pdf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Matrix_2.0_Green_Paper(English).pdf filter=lfs diff=lfs merge=lfs -text
|
GameInterface.tsx.txt
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import React, { useState } from 'react'
|
| 2 |
+
import { Button } from "@/components/ui/button"
|
| 3 |
+
import { Progress } from "@/components/ui/progress"
|
| 4 |
+
import { ScrollArea } from "@/components/ui/scroll-area"
|
| 5 |
+
|
| 6 |
+
export default function Component() {
|
| 7 |
+
const [position, setPosition] = useState(50)
|
| 8 |
+
const [inventory, setInventory] = useState<string[]>([])
|
| 9 |
+
const [currentObjective, setCurrentObjective] = useState("Explore the Enchanted Forest")
|
| 10 |
+
|
| 11 |
+
const moveCharacter = (direction: 'left' | 'right') => {
|
| 12 |
+
setPosition(prev => Math.max(0, Math.min(100, prev + (direction === 'left' ? -10 : 10))))
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
const gatherIngredient = () => {
|
| 16 |
+
const ingredients = ['Moonflower', 'Stardust', 'Dragon Scale', 'Phoenix Feather', 'Mermaid Tear']
|
| 17 |
+
const newIngredient = ingredients[Math.floor(Math.random() * ingredients.length)]
|
| 18 |
+
setInventory(prev => [...prev, newIngredient])
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
return (
|
| 22 |
+
<div className="w-full max-w-4xl mx-auto p-4 bg-gradient-to-b from-purple-600 to-blue-800 rounded-lg shadow-lg">
|
| 23 |
+
<h1 className="text-2xl font-bold text-white mb-4">Mystic Realms: The Alchemist's Journey</h1>
|
| 24 |
+
|
| 25 |
+
{/* Game Area */}
|
| 26 |
+
<div className="relative h-60 bg-gradient-to-r from-green-400 to-blue-500 rounded-lg mb-4 overflow-hidden">
|
| 27 |
+
<div
|
| 28 |
+
className="absolute bottom-0 w-10 h-20 bg-red-500"
|
| 29 |
+
style={{ left: `${position}%`, transition: 'left 0.3s ease-out' }}
|
| 30 |
+
/>
|
| 31 |
+
</div>
|
| 32 |
+
|
| 33 |
+
{/* Controls */}
|
| 34 |
+
<div className="flex justify-center space-x-4 mb-4">
|
| 35 |
+
<Button onClick={() => moveCharacter('left')}>Move Left</Button>
|
| 36 |
+
<Button onClick={gatherIngredient}>Gather Ingredient</Button>
|
| 37 |
+
<Button onClick={() => moveCharacter('right')}>Move Right</Button>
|
| 38 |
+
</div>
|
| 39 |
+
|
| 40 |
+
{/* Inventory */}
|
| 41 |
+
<div className="bg-white bg-opacity-20 rounded-lg p-4 mb-4">
|
| 42 |
+
<h2 className="text-xl font-semibold text-white mb-2">Inventory</h2>
|
| 43 |
+
<ScrollArea className="h-20">
|
| 44 |
+
<ul className="space-y-1">
|
| 45 |
+
{inventory.map((item, index) => (
|
| 46 |
+
<li key={index} className="text-white">{item}</li>
|
| 47 |
+
))}
|
| 48 |
+
</ul>
|
| 49 |
+
</ScrollArea>
|
| 50 |
+
</div>
|
| 51 |
+
|
| 52 |
+
{/* Objective */}
|
| 53 |
+
<div className="bg-white bg-opacity-20 rounded-lg p-4">
|
| 54 |
+
<h2 className="text-xl font-semibold text-white mb-2">Current Objective</h2>
|
| 55 |
+
<p className="text-white">{currentObjective}</p>
|
| 56 |
+
<Progress value={33} className="mt-2" />
|
| 57 |
+
</div>
|
| 58 |
+
</div>
|
| 59 |
+
)
|
| 60 |
+
}
|
MATRIX_1.0_WHITE_PAPER.pdf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59fb0d6e55e6a2e53034598976079c19adc871f50e27af95e55eee05aab7ba0f
|
| 3 |
+
size 2645487
|
Matrix 3.0 Roadmap Full EN.pdf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5b2963e4c79bb67900694268268a0f6fd376f33c063afce1c0bb38fbd162640
|
| 3 |
+
size 5132160
|
Matrix_2.0_Green_Paper(English).pdf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0c6ed056d846b86b63b6eec74c6eac7eddeeca721aa7ceec30fbdd3f00ed1f21
|
| 3 |
+
size 5318979
|
README-builds.html
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
q1blue-gptengineer-krrhvw2remc.tar.html
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9f58e042637380a344e0a64aa007d8915cad9b9798feab5c91e561d7b13d57f
|
| 3 |
+
size 710
|
videoworldsimulators2024.bib
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@article{videoworldsimulators2024,
|
| 2 |
+
title={Video generation models as world simulators},
|
| 3 |
+
author={Tim Brooks and Bill Peebles and Connor Holmes and Will DePue and Yufei Guo and Li Jing and David Schnurr and Joe Taylor and Troy Luhman and Eric Luhman and Clarence Ng and Ricky Wang and Aditya Ramesh},
|
| 4 |
+
year={2024},
|
| 5 |
+
url={https://openai.com/research/video-generation-models-as-world-simulators},
|
| 6 |
+
}
|