Update icon message and profile (#1504)
- Add new icon profil pixel - Add new icon message pixel - Migrate message icon in svelt menu Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com>
This commit is contained in:
parent
2f2aa55fd7
commit
900c53f499
BIN
front/dist/resources/objects/talk.png
vendored
BIN
front/dist/resources/objects/talk.png
vendored
Binary file not shown.
Before Width: | Height: | Size: 516 B After Width: | Height: | Size: 389 B |
@ -1,11 +1,16 @@
|
|||||||
<script lang="typescript">
|
<script lang="typescript">
|
||||||
import logoWA from "../images/logo-WA-min.png"
|
import logoWA from "../images/logo-WA-pixel.png"
|
||||||
|
import logoTalk from "../images/logo-message-pixel.png"
|
||||||
import {menuVisiblilityStore} from "../../Stores/MenuStore";
|
import {menuVisiblilityStore} from "../../Stores/MenuStore";
|
||||||
|
import {chatVisibilityStore} from "../../Stores/ChatStore";
|
||||||
import {get} from "svelte/store";
|
import {get} from "svelte/store";
|
||||||
|
|
||||||
function showMenu(){
|
function showMenu(){
|
||||||
menuVisiblilityStore.set(!get(menuVisiblilityStore))
|
menuVisiblilityStore.set(!get(menuVisiblilityStore))
|
||||||
}
|
}
|
||||||
|
function showChat(){
|
||||||
|
chatVisibilityStore.set(true);
|
||||||
|
}
|
||||||
|
|
||||||
function onKeyDown(e: KeyboardEvent) {
|
function onKeyDown(e: KeyboardEvent) {
|
||||||
if (e.key === "Tab") {
|
if (e.key === "Tab") {
|
||||||
@ -18,17 +23,23 @@
|
|||||||
|
|
||||||
<main class="menuIcon">
|
<main class="menuIcon">
|
||||||
<img src={logoWA} alt="open menu" class="nes-pointer" on:click|preventDefault={showMenu}>
|
<img src={logoWA} alt="open menu" class="nes-pointer" on:click|preventDefault={showMenu}>
|
||||||
|
<img src={logoTalk} alt="open menu" class="nes-pointer" on:click|preventDefault={showChat}>
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.menuIcon {
|
.menuIcon {
|
||||||
|
display: inline-grid;
|
||||||
margin: 25px;
|
margin: 25px;
|
||||||
img {
|
img {
|
||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
width: 60px;
|
width: 60px;
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
|
margin: 3px
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.menuIcon img:hover{
|
||||||
|
transform: scale(1.2);
|
||||||
|
}
|
||||||
@media only screen and (max-width: 800px), only screen and (max-height: 800px) {
|
@media only screen and (max-width: 800px), only screen and (max-height: 800px) {
|
||||||
.menuIcon {
|
.menuIcon {
|
||||||
margin: 3px;
|
margin: 3px;
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB |
BIN
front/src/Components/images/logo-WA-pixel.png
Normal file
BIN
front/src/Components/images/logo-WA-pixel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
front/src/Components/images/logo-message-pixel.png
Normal file
BIN
front/src/Components/images/logo-message-pixel.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 389 B |
@ -1,17 +0,0 @@
|
|||||||
import { DEPTH_INGAME_TEXT_INDEX } from "../Game/DepthIndexes";
|
|
||||||
import { chatVisibilityStore } from "../../Stores/ChatStore";
|
|
||||||
|
|
||||||
export const openChatIconName = "openChatIcon";
|
|
||||||
export class OpenChatIcon extends Phaser.GameObjects.Image {
|
|
||||||
constructor(scene: Phaser.Scene, x: number, y: number) {
|
|
||||||
super(scene, x, y, openChatIconName, 3);
|
|
||||||
scene.add.existing(this);
|
|
||||||
this.setScrollFactor(0, 0);
|
|
||||||
this.setOrigin(0, 1);
|
|
||||||
this.setInteractive();
|
|
||||||
//this.setVisible(false);
|
|
||||||
this.setDepth(DEPTH_INGAME_TEXT_INDEX);
|
|
||||||
|
|
||||||
this.on("pointerup", () => chatVisibilityStore.set(true));
|
|
||||||
}
|
|
||||||
}
|
|
@ -38,7 +38,6 @@ import { HtmlUtils } from "../../WebRtc/HtmlUtils";
|
|||||||
import { mediaManager } from "../../WebRtc/MediaManager";
|
import { mediaManager } from "../../WebRtc/MediaManager";
|
||||||
import { SimplePeer } from "../../WebRtc/SimplePeer";
|
import { SimplePeer } from "../../WebRtc/SimplePeer";
|
||||||
import { addLoader, removeLoader } from "../Components/Loader";
|
import { addLoader, removeLoader } from "../Components/Loader";
|
||||||
import { OpenChatIcon, openChatIconName } from "../Components/OpenChatIcon";
|
|
||||||
import { lazyLoadPlayerCharacterTextures, loadCustomTexture } from "../Entity/PlayerTexturesLoadingManager";
|
import { lazyLoadPlayerCharacterTextures, loadCustomTexture } from "../Entity/PlayerTexturesLoadingManager";
|
||||||
import { RemotePlayer } from "../Entity/RemotePlayer";
|
import { RemotePlayer } from "../Entity/RemotePlayer";
|
||||||
import type { ActionableItem } from "../Items/ActionableItem";
|
import type { ActionableItem } from "../Items/ActionableItem";
|
||||||
@ -174,7 +173,6 @@ export class GameScene extends DirtyScene {
|
|||||||
private createPromiseResolve!: (value?: void | PromiseLike<void>) => void;
|
private createPromiseResolve!: (value?: void | PromiseLike<void>) => void;
|
||||||
private iframeSubscriptionList!: Array<Subscription>;
|
private iframeSubscriptionList!: Array<Subscription>;
|
||||||
private peerStoreUnsubscribe!: () => void;
|
private peerStoreUnsubscribe!: () => void;
|
||||||
private chatVisibilityUnsubscribe!: () => void;
|
|
||||||
private emoteUnsubscribe!: () => void;
|
private emoteUnsubscribe!: () => void;
|
||||||
private emoteMenuUnsubscribe!: () => void;
|
private emoteMenuUnsubscribe!: () => void;
|
||||||
private biggestAvailableAreaStoreUnsubscribe!: () => void;
|
private biggestAvailableAreaStoreUnsubscribe!: () => void;
|
||||||
@ -197,7 +195,6 @@ export class GameScene extends DirtyScene {
|
|||||||
private outlinedItem: ActionableItem | null = null;
|
private outlinedItem: ActionableItem | null = null;
|
||||||
public userInputManager!: UserInputManager;
|
public userInputManager!: UserInputManager;
|
||||||
private isReconnecting: boolean | undefined = undefined;
|
private isReconnecting: boolean | undefined = undefined;
|
||||||
private openChatIcon!: OpenChatIcon;
|
|
||||||
private playerName!: string;
|
private playerName!: string;
|
||||||
private characterLayers!: string[];
|
private characterLayers!: string[];
|
||||||
private companion!: string | null;
|
private companion!: string | null;
|
||||||
@ -245,7 +242,6 @@ export class GameScene extends DirtyScene {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.load.image(openChatIconName, "resources/objects/talk.png");
|
|
||||||
if (touchScreenManager.supportTouchScreen) {
|
if (touchScreenManager.supportTouchScreen) {
|
||||||
this.load.image(joystickBaseKey, joystickBaseImg);
|
this.load.image(joystickBaseKey, joystickBaseImg);
|
||||||
this.load.image(joystickThumbKey, joystickThumbImg);
|
this.load.image(joystickThumbKey, joystickThumbImg);
|
||||||
@ -584,8 +580,6 @@ export class GameScene extends DirtyScene {
|
|||||||
this.outlinedItem?.activate();
|
this.outlinedItem?.activate();
|
||||||
});
|
});
|
||||||
|
|
||||||
this.openChatIcon = new OpenChatIcon(this, 2, this.game.renderer.height - 2);
|
|
||||||
|
|
||||||
this.reposition();
|
this.reposition();
|
||||||
|
|
||||||
// From now, this game scene will be notified of reposition events
|
// From now, this game scene will be notified of reposition events
|
||||||
@ -618,10 +612,6 @@ export class GameScene extends DirtyScene {
|
|||||||
oldPeerNumber = newPeerNumber;
|
oldPeerNumber = newPeerNumber;
|
||||||
});
|
});
|
||||||
|
|
||||||
this.chatVisibilityUnsubscribe = chatVisibilityStore.subscribe((v) => {
|
|
||||||
this.openChatIcon.setVisible(!v);
|
|
||||||
});
|
|
||||||
|
|
||||||
this.emoteUnsubscribe = emoteStore.subscribe((emoteKey) => {
|
this.emoteUnsubscribe = emoteStore.subscribe((emoteKey) => {
|
||||||
if (emoteKey) {
|
if (emoteKey) {
|
||||||
this.CurrentPlayer?.playEmote(emoteKey);
|
this.CurrentPlayer?.playEmote(emoteKey);
|
||||||
@ -1327,7 +1317,6 @@ ${escapedMessage}
|
|||||||
this.pinchManager?.destroy();
|
this.pinchManager?.destroy();
|
||||||
this.emoteManager.destroy();
|
this.emoteManager.destroy();
|
||||||
this.peerStoreUnsubscribe();
|
this.peerStoreUnsubscribe();
|
||||||
this.chatVisibilityUnsubscribe();
|
|
||||||
this.emoteUnsubscribe();
|
this.emoteUnsubscribe();
|
||||||
this.emoteMenuUnsubscribe();
|
this.emoteMenuUnsubscribe();
|
||||||
this.biggestAvailableAreaStoreUnsubscribe();
|
this.biggestAvailableAreaStoreUnsubscribe();
|
||||||
@ -1802,8 +1791,6 @@ ${escapedMessage}
|
|||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
private reposition(): void {
|
private reposition(): void {
|
||||||
this.openChatIcon.setY(this.game.renderer.height - 2);
|
|
||||||
|
|
||||||
// Recompute camera offset if needed
|
// Recompute camera offset if needed
|
||||||
biggestAvailableAreaStore.recompute();
|
biggestAvailableAreaStore.recompute();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user