From 377d49129ced143b7968b5df99f4a68457da6fb3 Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Fri, 5 Jul 2024 23:43:23 -0700 Subject: [PATCH] remove experiments from main --- _assets/index.js | 20 --- _assets/index.scss | 1 - _assets/js/cartridge.js | 85 ------------ _assets/js/lens.js | 87 ------------ _assets/js/pong.js | 248 ----------------------------------- _assets/template.html | 22 ---- src/Gemfile | 33 ----- src/_layouts/cartridge.html | 11 -- src/_layouts/console.html | 35 ----- src/_layouts/pong.html | 26 ---- src/_scss/pages/console.scss | 60 --------- src/_scss/pages/home.scss | 76 ----------- src/_scss/pages/pong.scss | 28 ---- src/cartridge/blog.md | 5 - src/cartridge/index.md | 4 - src/img/ball.png | Bin 5947 -> 0 bytes src/pong/about.md | 8 -- src/pong/ball.md | 7 - src/pong/blank.md | 5 - src/pong/blog.md | 7 - src/pong/index.md | 6 - src/pong/paddle.md | 5 - 22 files changed, 779 deletions(-) delete mode 100644 _assets/index.scss delete mode 100644 _assets/js/cartridge.js delete mode 100644 _assets/js/lens.js delete mode 100644 _assets/js/pong.js delete mode 100644 _assets/template.html delete mode 100644 src/Gemfile delete mode 100644 src/_layouts/cartridge.html delete mode 100644 src/_layouts/console.html delete mode 100644 src/_layouts/pong.html delete mode 100644 src/_scss/pages/console.scss delete mode 100644 src/_scss/pages/home.scss delete mode 100644 src/_scss/pages/pong.scss delete mode 100644 src/cartridge/blog.md delete mode 100644 src/cartridge/index.md delete mode 100644 src/img/ball.png delete mode 100644 src/pong/about.md delete mode 100644 src/pong/ball.md delete mode 100644 src/pong/blank.md delete mode 100644 src/pong/blog.md delete mode 100644 src/pong/index.md delete mode 100644 src/pong/paddle.md diff --git a/_assets/index.js b/_assets/index.js index 898405a..e69de29 100644 --- a/_assets/index.js +++ b/_assets/index.js @@ -1,20 +0,0 @@ -import { init as init_lens } from './js/lens.js' -import { init as init_cartridge } from './js/cartridge'; -import { init as init_pong } from './js/pong'; - - -// Test import of an asset -// import webpackLogo from '@/images/webpack-logo.svg' - -// Test import of styles -import './index.scss'; - - -// let main = document.getElementsByTagName(main); -// console.log('name', main[0].getAttribute('name')) -// if (main[0].getAttribute('name') === "home"){ - init_lens(); - console.log('init lens'); - init_cartridge(); - init_pong(); -// } diff --git a/_assets/index.scss b/_assets/index.scss deleted file mode 100644 index 5ab2a50..0000000 --- a/_assets/index.scss +++ /dev/null @@ -1 +0,0 @@ -@import '../src/_scss/index'; diff --git a/_assets/js/cartridge.js b/_assets/js/cartridge.js deleted file mode 100644 index 05d4653..0000000 --- a/_assets/js/cartridge.js +++ /dev/null @@ -1,85 +0,0 @@ -const CART_SIZE = { - x: 300, - y: 200 -} - -function slot_position(){ - let slot = document.querySelector('#slot'); - return slot.getBoundingClientRect() -} - -function list_carts(){ - let carts= document.querySelectorAll('.cartridge-metadata'); - return carts; - -} - - -function showPopups(){ - let carts = list_carts(); - - let cartPopups = carts.forEach((cart) => { - console.log('cart', cart); - let popup = window.open( - cart.getAttribute('url'), - cart.getAttribute('title'), - `popup=true,width=${CART_SIZE.x+10},height=${CART_SIZE.y+10}` - ) - popup.screen - }) -} - - - -// function store_slot_position(){ -// let slot_pos = slot_position(); -// console.log(slot_pos); -// window.setTimeout(poll_position, 1000); -// } - -function store_position(){ - let name = document.querySelector('.cartridge .label').textContent; - let position = { - x: window.screenX, - y: window.screenY, - width: window.outerWidth, - height: window.outerHeight - }; - - localStorage.setItem(name, JSON.stringify(position)); - window.setTimeout(store_position, 100); - console.log('store position', position); -} - -function console_message(msg){ - // console.log('console message', msg); - let cart_position = JSON.parse(msg.newValue); - cart_position['name'] = String(msg.key).trim(); - console.log(cart_position) -} - -function init_console(){ - showPopups(); - // store_slot_position(); - - // window.addEventListener('resize', () => { - // store_slot_position(); - // }) - - window.addEventListener('storage', (event) => {console_message(event)}) -} - -function init_cartridge(){ - console.log('init cartridge') - store_position(); -} - -export function init(){ - window.showPopups = showPopups; - let page_type = document.querySelector('main').getAttribute('page'); - if (page_type === 'console'){ - init_console(); - } else if (page_type === "cartridge"){ - init_cartridge(); - } -} diff --git a/_assets/js/lens.js b/_assets/js/lens.js deleted file mode 100644 index 70dd90e..0000000 --- a/_assets/js/lens.js +++ /dev/null @@ -1,87 +0,0 @@ -// OK so the next thing to do is make it so it's blurry when the screen is too -// big or too small, and thne prompt someone to make their screen bigger or smaller -// to be a lens and then you have to move the window around to be able to see the different -// links on the page - -const FOCUS_SIZE = 400; - -function _init(){ - let root = document.querySelector(':root'); - let lens = document.getElementsByClassName('lens')[0]; - let filter = document.getElementById('filter'); - let hid_hint = false; - - if (!lens){ - console.log('not doing lens') - return - } - - // let FOCUS_SIZE = root.style.getPropertyValue('--lens-size') - - root.style.setProperty( - '--screen-width', - `${window.screen.availWidth}px` - ); - root.style.setProperty( - '--screen-height', - `${window.screen.availHeight}px` - ); - function set_position(){ - lens.style.transform = `translate(-${window.screenX}px, -${window.screenY}px)` - setTimeout(set_position, 10); - } - - function get_blur(){ - return Math.max( - Math.sqrt( - ( - Math.abs(window.innerHeight-FOCUS_SIZE) + - Math.abs(window.innerWidth-FOCUS_SIZE) - ) / 4)-5, - 0) - } - - function set_blur(){ - let blur_radius = get_blur() - filter.style.setProperty( - '--blur-radius', - `${blur_radius}px` - ) - setTimeout(set_blur, 50); - } - - function show_hint(){ - if (get_blur() > 3) { - let hint = document.getElementById('hint'); - hint.classList.remove('hidden') - - setTimeout(check_hint, 2000); - } - } - - function check_hint(){ - if (get_blur() < 3){ - let hint = document.getElementById('hint'); - hint.classList.add('rehidden'); - hid_hint = true; - - } - if (hid_hint === false){ - setTimeout(check_hint, 100); - } - } - - set_position(); - set_blur(); - setTimeout(show_hint, 2000); - // setTimeout(set_size,100); - // set_size() -} - -export function init(){ - - // document.addEventListener('load', () => { - // _init(); - // }) - _init(); -} diff --git a/_assets/js/pong.js b/_assets/js/pong.js deleted file mode 100644 index 9da2ccb..0000000 --- a/_assets/js/pong.js +++ /dev/null @@ -1,248 +0,0 @@ -const PADDING = 50; - -const PADDLE_SIZE = { - width: 500, - height: 30, -} -const BALL_SIZE = { - width: 50, - height: 30 -} - -const PADDLE_POSITION = { - x: (window.screen.availWidth / 2) - (PADDLE_SIZE.width/2), - y: window.screen.availHeight - PADDLE_SIZE.height - PADDING -} - -const TARGET_SIZE = { - width: 300, - height: 100 -} - -const TARGET_GRID = { - x: 4, - y: 3 -} - - -const PADDLE_MOVE = 30; - - -function shuffleArray(array) { - return array.map(value => ({ value, sort: Math.random() })) - .sort((a, b) => a.sort - b.sort) - .map(({ value }) => value) -} - - -function plan_grid(){ - let n_targets = TARGET_GRID.x * TARGET_GRID.y; - let pages, page_objects; -// get pages that are real pages - pages = document.querySelectorAll('.page-metadata'); - page_objects = Array.from(pages).map((page) => { - return { - url: page.getAttribute('url') - } - }) - // pad end with blanks - page_objects = Object.assign(new Array(n_targets).fill({url:'blank.html'}), page_objects); - // shuffle array order - page_objects = shuffleArray(page_objects) - - // arrange on a grid! - page_objects = page_objects.map((page, idx) => { - let col = idx % TARGET_GRID.x; - let row = Math.floor(idx / TARGET_GRID.x); - let col_grid_width = (window.screen.availWidth-(PADDING*2)) / TARGET_GRID.x - - return { - ...page, - x: (col_grid_width * col) + PADDING, - y: (PADDING*2 + TARGET_SIZE.height) * row - } - }) - - return page_objects -} - -function popupPosition(popup){ - let pos = { - left: popup.screenLeft, - right: popup.screenLeft + popup.outerWidth, - top: popup.screenTop, - bottom: popup.screenTop + popup.outerHeight - } - pos.centerX = (pos.left + pos.right) / 2 - pos.centerY = (pos.top + pos.bottom) / 2 - return pos -} - -function checkIntersect(a, b){ - let pos_a = popupPosition(a); - let pos_b = popupPosition(b); - // console.log(pos_a,pos_b) - // check if intersect - let overlap = !( - pos_a.right < pos_b.left || - pos_a.left > pos_b.right || - pos_a.bottom < pos_b.top || - pos_a.top > pos_b.bottom - ) - - if (overlap === false){ - return false - } - - // if overlap, check what side we are on - if (Math.abs(pos_a.centerX-pos_b.centerX) > Math.abs(pos_a.centerY-pos_b.centerY)){ - // more X difference than y difference, we are left or right - if (pos_a.centerX > pos_b.centerX){ - // a is to the right of b - return('right') - } else { - return('left') - } - } else { - if (pos_a.centerY > pos_b.centerY){ - // a is below b - return('bottom') - } else { - return('top') - } - } -} - -function endGame(popups, ball, paddle){ -for (let popup of popups){ - popup.popup.close() -} -ball.popup.close(); -paddle.close(); -} - -function handleIntersect(popup, popups){ - if (popup.url === "blank.html"){ - popup.popup.close() - let index = popups.indexOf(popup); - if (index > -1){ - popups.splice(index, 1); - } - console.log('closing popup') - return false - } else { - window.location = popup.url - console.log('going to new page!') - return true; - } -} - -function updateBall(ball, popups, paddle){ - let end_game = false; - ball.position = popupPosition(ball.popup) - // console.log(ball.position, popups.popup) - // check bounce - if (ball.position.right === window.screen.availWidth || ball.position.left === 0){ - ball.velocity.x *= -1 - } - if (ball.position.top === screen.availTop){ - ball.velocity.y *= -1 - } - - // check intersections with other windows - for (let popup of popups){ - // console.log(popup.popup) - let intersected = checkIntersect(ball.popup, popup.popup) - if (intersected === 'top' || intersected === 'bottom'){ - ball.velocity.y *= -1; - } else if (intersected === 'left' || intersected === 'right'){ - ball.velocity.x *= -1; - } - if (intersected){ - console.log(intersected); - end_game = handleIntersect(popup, popups); - break - } - - } - - if (checkIntersect(ball.popup, paddle) && ball.velocity.y < 0){ - ball.velocity.y *= -1; - } - - if (ball.position.bottom === window.screen.availHeight && ball.velocity.y < 0){ - // ball died :( - // end_game = true; - ball.popup.close(); - ball = init_ball(); - } - - if (end_game){ - endGame(popups, ball, paddle) - } else { - ball.popup.moveBy(ball.velocity.x, -ball.velocity.y) - window.setTimeout(() => {updateBall(ball, popups, paddle)}, 100) -} -} - -function init_ball(){ - let ball_popup = window.open('ball.html', 'ball', `popup=true,width=${BALL_SIZE.width},height=${BALL_SIZE.height},screenX=${PADDLE_POSITION.x},screenY=${PADDLE_POSITION.y-BALL_SIZE.height}`) - ball_popup.moveTo(PADDLE_POSITION.x,PADDLE_POSITION.y) - - let ball = { - popup: ball_popup, - velocity: {x: 20, y: 20} - }; - return ball -} - - -function init_controller(){ - let grid = plan_grid(); - console.log(grid); - let popups = grid.map((page, idx) => { - return{ ...page, - popup: window.open(page.url, `target-${idx}`, `popup=true,width=${TARGET_SIZE.width},height=${TARGET_SIZE.height},left=${page.x},top=${page.y}`) - } - }) - let paddle = window.open('paddle.html', 'paddle', `popup=true,width=${PADDLE_SIZE.width},height=${PADDLE_SIZE.height},screenX=${PADDLE_POSITION.x},screenY=${PADDLE_POSITION.y}`) - - let ball = init_ball(); - updateBall(ball, popups, paddle); -} - -function init_paddle(){ - window.resizeTo(PADDLE_SIZE.width, PADDLE_SIZE.height); - window.moveTo( - PADDLE_POSITION.x, - PADDLE_POSITION.y - ) - - document.addEventListener('keydown', (event) => { - if (event.key == "ArrowLeft"){ - if (window.screenX > PADDLE_MOVE) { - window.moveBy(-PADDLE_MOVE, 0) - } else { - window.moveBy(-window.screenX, 0); - } - } else if (event.key == "ArrowRight"){ - let right_edge = window.screenX + window.outerWidth; - if (right_edge < window.screen.availWidth - PADDLE_MOVE){ - window.moveBy(PADDLE_MOVE, 0) - } else { - window.moveBy(window.screen.availWidth - right_edge, 0) - } - } - }) -} - - - -export function init(){ - let page_type = document.querySelector('main').getAttribute('page'); - if (page_type === 'pong'){ - init_controller(); - } else if (page_type === "paddle"){ - init_paddle(); - } -} diff --git a/_assets/template.html b/_assets/template.html deleted file mode 100644 index 71b5460..0000000 --- a/_assets/template.html +++ /dev/null @@ -1,22 +0,0 @@ - - - -{% include head.html %} - - - -{% if page.navigation %} -{% include navigation.html %} -{% endif %} - -
- - {{ content }} - -
- - - -{% include footer.html %} - - diff --git a/src/Gemfile b/src/Gemfile deleted file mode 100644 index ff2c342..0000000 --- a/src/Gemfile +++ /dev/null @@ -1,33 +0,0 @@ -source "https://rubygems.org" -# Hello! This is where you manage which Jekyll version is used to run. -# When you want to use a different version, change it below, save the -# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: -# -# bundle exec jekyll serve -# -# This will help ensure the proper Jekyll version is running. -# Happy Jekylling! -gem "jekyll", "~> 4.3.2" -# This is the default theme for new Jekyll sites. You may change this to anything you like. -gem "minima", "~> 2.5" -# If you want to use GitHub Pages, remove the "gem "jekyll"" above and -# uncomment the line below. To upgrade, run `bundle update github-pages`. -# gem "github-pages", group: :jekyll_plugins -# If you have any plugins, put them here! -group :jekyll_plugins do - gem "jekyll-feed", "~> 0.12" -end - -# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem -# and associated library. -platforms :mingw, :x64_mingw, :mswin, :jruby do - gem "tzinfo", ">= 1", "< 3" - gem "tzinfo-data" -end - -# Performance-booster for watching directories on Windows -gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] - -# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem -# do not have a Java counterpart. -gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] diff --git a/src/_layouts/cartridge.html b/src/_layouts/cartridge.html deleted file mode 100644 index 8ab28b2..0000000 --- a/src/_layouts/cartridge.html +++ /dev/null @@ -1,11 +0,0 @@ ---- -layout: default ---- -
-
- -
-
- {{ page.title }} -
-
diff --git a/src/_layouts/console.html b/src/_layouts/console.html deleted file mode 100644 index fc9281f..0000000 --- a/src/_layouts/console.html +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: default ---- - -
- -
- -
- -
-
- -
-
- I AM A SLOT PUT THINGS IN ME -
-
- - {% for cartridge in site.pages %} - {% if cartridge.layout == "cartridge" %} - - {% endif %} - {% endfor %} -
diff --git a/src/_layouts/pong.html b/src/_layouts/pong.html deleted file mode 100644 index 7aaf17d..0000000 --- a/src/_layouts/pong.html +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: default ---- - -
- -
{{ content }}
- - -
- - diff --git a/src/_scss/pages/console.scss b/src/_scss/pages/console.scss deleted file mode 100644 index edca7aa..0000000 --- a/src/_scss/pages/console.scss +++ /dev/null @@ -1,60 +0,0 @@ -.cartridge-list { - //display: none; -} - -#console { - - #container { - position: absolute; - bottom: 20px; - right: 20px; - height: 200px; - width: 50%; - border: 2px solid black; - - - #slot{ - border: 3px solid black; - width: 300px; - height: 50px; - - } - #slot-label { - font-family: monospace; - top: 3.5em; - position:relative; - } - - } - - #popups { - position:absolute; - top: 20%; - left: 20%; - } - - & * { - position: absolute; - } -} - -.cartridge { - position:absolute; - top:0; - left:0; - width: 300px; - height: 200px; - border: 2px solid black; - - box-shadow: 5px 5px black; - - .label { - position: absolute; - top: 20px; - left: 20px; - font-family: monospace; - } - - - -} diff --git a/src/_scss/pages/home.scss b/src/_scss/pages/home.scss deleted file mode 100644 index 4324009..0000000 --- a/src/_scss/pages/home.scss +++ /dev/null @@ -1,76 +0,0 @@ -:root { - --screen-width: 100vw; - --screen-height: 100vh; - --blur-radius: 100px; - --lens-size: 400px; - --hint-color: deeppink; -} - -.lens { - - //--screen-left: 0; - //--screen-top: 0; - position: absolute; - width: var(--screen-width); - height: var(--screen-height); - //top: var(--screen-top); - //left: var(--screen-left); - top: 0; - left: 0; - - transition: transform ease 100ms; -} - -#filter { - z-index: 999; - width: 100%; - height: 100%; - left:0; - top:0; - position:absolute; - backdrop-filter: blur(var(--blur-radius)); - //background-color: #ffffffff; -} - -#hint { - width: var(--lens-size); - height: var(--lens-size); - position: absolute; - border: 3px solid var(--hint-color); - top: calc(50% - var(--lens-size)/2); - left: calc(50% - var(--lens-size)/2); - border-radius: calc(var(--lens-size)); - transition: opacity 1000ms; - opacity: 100%; - z-index: 10000; - - text-align: center; - backdrop-filter: blur(10px); - - p { - font-family: Times, "Times New Roman", serif; - background-color: deeppink; - font-weight: bold; - font-style: italic; - width: 50%; - color: white; - margin: auto; - font-size: 2em; - top: 40%; - position: relative; - //left: 50%; - } - - &.hidden, &.rehidden { - border-color: #ff000000; - opacity: 0%; - //transition: all 1000ms; - - } - - &.hidden { - transition: all 0ms; - } -} - - diff --git a/src/_scss/pages/pong.scss b/src/_scss/pages/pong.scss deleted file mode 100644 index d38a9f2..0000000 --- a/src/_scss/pages/pong.scss +++ /dev/null @@ -1,28 +0,0 @@ -#pong { - width: 100%; - height: 100%; - position: absolute; - left: 0; - top: 0; - - .content { - text-align: center; - font: { - family: monospace; - size: 3em; - } - - } - - .page-list { - display: none; - } -} - -.pong-ball { - width: 50px; - height: 50px; - left: 0; - top: 0; - position: absolute; -} diff --git a/src/cartridge/blog.md b/src/cartridge/blog.md deleted file mode 100644 index 93be6d7..0000000 --- a/src/cartridge/blog.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: cartridge -title: blog -page_name: cartridge ---- diff --git a/src/cartridge/index.md b/src/cartridge/index.md deleted file mode 100644 index 7b35029..0000000 --- a/src/cartridge/index.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -layout: console -page_name: console ---- diff --git a/src/img/ball.png b/src/img/ball.png deleted file mode 100644 index 8b11187b4f5a9d3523e601531528deef39783807..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5947 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 diff --git a/src/pong/blank.md b/src/pong/blank.md deleted file mode 100644 index 3b418f3..0000000 --- a/src/pong/blank.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -title: target -page_name: blank_target -layout: pong ---- diff --git a/src/pong/blog.md b/src/pong/blog.md deleted file mode 100644 index a97040a..0000000 --- a/src/pong/blog.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: blog -page_name: target -layout: pong -color: pink ---- -BLOG diff --git a/src/pong/index.md b/src/pong/index.md deleted file mode 100644 index fe2213d..0000000 --- a/src/pong/index.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -layout: pong -page_name: pong - ---- - diff --git a/src/pong/paddle.md b/src/pong/paddle.md deleted file mode 100644 index 2020959..0000000 --- a/src/pong/paddle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -layout: pong -page_name: paddle -title: paddle ----