Site
- Change style of user list in lobby page for input at top - add some 3d objects on home page
This commit is contained in:
@ -6,13 +6,14 @@
|
|||||||
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
|
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2024/08/22 17:19:17 by edbernar #+# #+# */
|
/* Created: 2024/08/22 17:19:17 by edbernar #+# #+# */
|
||||||
/* Updated: 2024/09/18 06:20:08 by edbernar ### ########.fr */
|
/* Updated: 2024/09/18 23:51:51 by edbernar ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
import { EffectComposer } from '/static/javascript/three/examples/jsm/postprocessing/EffectComposer.js';
|
import { EffectComposer } from '/static/javascript/three/examples/jsm/postprocessing/EffectComposer.js';
|
||||||
import { RenderPass } from '/static/javascript/three/examples/jsm/postprocessing/RenderPass.js';
|
import { RenderPass } from '/static/javascript/three/examples/jsm/postprocessing/RenderPass.js';
|
||||||
import { BokehPass } from '/static/javascript/three/examples/jsm/postprocessing/BokehPass.js';
|
import { BokehPass } from '/static/javascript/three/examples/jsm/postprocessing/BokehPass.js';
|
||||||
|
import { GLTFLoader } from '/static/javascript/three/examples/jsm/loaders/GLTFLoader.js';
|
||||||
import { userMeInfo } from "/static/javascript/typeResponse/typeLogin.js";
|
import { userMeInfo } from "/static/javascript/typeResponse/typeLogin.js";
|
||||||
import * as THREE from '/static/javascript/three/build/three.module.js'
|
import * as THREE from '/static/javascript/three/build/three.module.js'
|
||||||
import { Screen, light } from '/static/javascript/home3D/Screen.js'
|
import { Screen, light } from '/static/javascript/home3D/Screen.js'
|
||||||
@ -94,6 +95,7 @@ class Home3D
|
|||||||
|
|
||||||
function home3D()
|
function home3D()
|
||||||
{
|
{
|
||||||
|
const loader = new GLTFLoader();
|
||||||
let actualVideo = -1;
|
let actualVideo = -1;
|
||||||
let globalSpeed = 0.75;
|
let globalSpeed = 0.75;
|
||||||
const ambiantLight = new THREE.AmbientLight(0xffffff, 35);
|
const ambiantLight = new THREE.AmbientLight(0xffffff, 35);
|
||||||
@ -113,6 +115,10 @@ function home3D()
|
|||||||
|
|
||||||
if (Math.random() % 100 > 0.97)
|
if (Math.random() % 100 > 0.97)
|
||||||
video.pong = '/static/video/homePage/easteregg.webm'
|
video.pong = '/static/video/homePage/easteregg.webm'
|
||||||
|
newBgWall();
|
||||||
|
putObject('/static/models3D/homePage/lamp.glb', -2.5, 0, 2.5, 3, 0, Math.PI + Math.PI / 8, 0);
|
||||||
|
putObject('/static/models3D/homePage/plant.glb', 1.5, 0, 3, 0.5, 0, 0, 0);
|
||||||
|
putObject('/static/models3D/homePage/gameboy.glb', -0.5, -0.075, 0.5, 0.1, 0, 0.4, 0);
|
||||||
renderer.toneMapping = THREE.LinearToneMapping;
|
renderer.toneMapping = THREE.LinearToneMapping;
|
||||||
renderer.shadowMap.enabled = true;
|
renderer.shadowMap.enabled = true;
|
||||||
renderer.shadowMap.type = THREE.PCFSoftShadowMap;
|
renderer.shadowMap.type = THREE.PCFSoftShadowMap;
|
||||||
@ -252,6 +258,44 @@ function home3D()
|
|||||||
composer.render();
|
composer.render();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function putObject(objUrl, x, y, z, scale, rX, rY, rZ) {
|
||||||
|
loader.load(objUrl, (gltf) => {
|
||||||
|
const group = new THREE.Group();
|
||||||
|
const material = new THREE.MeshPhysicalMaterial({color: 0x080808});
|
||||||
|
|
||||||
|
gltf.scene.children.forEach(elem => {
|
||||||
|
elem.traverse((child) => {
|
||||||
|
if (child.isMesh) {
|
||||||
|
child.material = material; // Appliquer le matériau aux meshes
|
||||||
|
child.receiveShadow = true;
|
||||||
|
child.castShadow = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
group.add(elem);
|
||||||
|
});
|
||||||
|
|
||||||
|
group.position.set(x, y, z);
|
||||||
|
group.scale.set(scale, scale, scale);
|
||||||
|
group.rotation.set(rX, rY, rZ);
|
||||||
|
scene.add(group);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function newBgWall()
|
||||||
|
{
|
||||||
|
const geometry = new THREE.BoxGeometry(100, 100, 0.1);
|
||||||
|
const material = new THREE.MeshStandardMaterial({color: 0x020202});
|
||||||
|
const mesh = new THREE.Mesh(geometry, material);
|
||||||
|
const geometry2 = new THREE.BoxGeometry(10, 10, 0.1);
|
||||||
|
const material2 = new THREE.MeshStandardMaterial({color: 0x020202});
|
||||||
|
const mesh2 = new THREE.Mesh(geometry2, material2);
|
||||||
|
mesh.position.set(0, 0, 5);
|
||||||
|
scene.add(mesh);
|
||||||
|
mesh2.position.set(-5, 0, 0);
|
||||||
|
mesh2.rotateY(Math.PI / 2);
|
||||||
|
scene.add(mesh2);
|
||||||
|
}
|
||||||
|
|
||||||
function createCube()
|
function createCube()
|
||||||
{
|
{
|
||||||
const geometry = new THREE.BoxGeometry(5, 5, 0.1);
|
const geometry = new THREE.BoxGeometry(5, 5, 0.1);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
|
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2024/08/07 17:40:15 by edbernar #+# #+# */
|
/* Created: 2024/08/07 17:40:15 by edbernar #+# #+# */
|
||||||
/* Updated: 2024/09/18 20:30:09 by edbernar ### ########.fr */
|
/* Updated: 2024/09/18 21:51:14 by edbernar ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ class Login
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
waitForLogin().then((aa) => {
|
waitForLogin().then(() => {
|
||||||
if (userMeInfo.id !== -1)
|
if (userMeInfo.id !== -1)
|
||||||
{
|
{
|
||||||
nodeText = document.createTextNode(userMeInfo.username);
|
nodeText = document.createTextNode(userMeInfo.username);
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
|
/* By: edbernar <edbernar@student.42angouleme. +#+ +:+ +#+ */
|
||||||
/* +#+#+#+#+#+ +#+ */
|
/* +#+#+#+#+#+ +#+ */
|
||||||
/* Created: 2024/09/18 08:12:24 by edbernar #+# #+# */
|
/* Created: 2024/09/18 08:12:24 by edbernar #+# #+# */
|
||||||
/* Updated: 2024/09/18 09:19:40 by edbernar ### ########.fr */
|
/* Updated: 2024/09/18 22:05:40 by edbernar ### ########.fr */
|
||||||
/* */
|
/* */
|
||||||
/* ************************************************************************** */
|
/* ************************************************************************** */
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ function typeSearchUser(userList)
|
|||||||
const div = document.createElement('div');
|
const div = document.createElement('div');
|
||||||
|
|
||||||
div.setAttribute('class', 'searchResultLine');
|
div.setAttribute('class', 'searchResultLine');
|
||||||
div.innerHTML = '<p>' + user[0] + '</p>' + '<img src="' + user[2] + '">'
|
div.innerHTML = '<img src="' + user[2] + '">' + '<p>' + user[0] + '</p>';
|
||||||
searchResult.appendChild(div);
|
searchResult.appendChild(div);
|
||||||
div.addEventListener('click', () => {
|
div.addEventListener('click', () => {
|
||||||
console.log("Show profil " + user[0]);
|
console.log("Show profil " + user[0]);
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -355,7 +355,6 @@ body {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#searchResult .searchResultLine p {
|
#searchResult .searchResultLine p {
|
||||||
@ -370,4 +369,6 @@ body {
|
|||||||
width: 50px;
|
width: 50px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-left: 10px;
|
||||||
}
|
}
|
Reference in New Issue
Block a user