Create project
This commit is contained in:
commit
dd325d2d35
11 changed files with 168 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
www/projects
|
||||||
|
www/*.html
|
1
projects/projectile/index.html
Normal file
1
projects/projectile/index.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
BLABLABLABL
|
40
projects/projectile/index.js
Normal file
40
projects/projectile/index.js
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
|
||||||
|
|
||||||
|
let projectile= function (node){
|
||||||
|
|
||||||
|
node.setup = function() {
|
||||||
|
node.createCanvas(width, height);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
let t=0;
|
||||||
|
let v0=50
|
||||||
|
let x0=1
|
||||||
|
let y0=50
|
||||||
|
let g=9.81
|
||||||
|
let width=800
|
||||||
|
let height=200
|
||||||
|
let dots=[]
|
||||||
|
function x(t) {
|
||||||
|
return x0+v0*t
|
||||||
|
}
|
||||||
|
|
||||||
|
function y(t) {
|
||||||
|
return height - (-1/2 * g * t**2 + v0 * t + y0)
|
||||||
|
}
|
||||||
|
|
||||||
|
node.draw = function() {
|
||||||
|
node.background(50);
|
||||||
|
dots.forEach((elt)=>{node.ellipse(elt[0],elt[1],4,4);})
|
||||||
|
node.ellipse(x(t),y(t),20,20);
|
||||||
|
dots.push([x(t),y(t)])
|
||||||
|
if(t>10){
|
||||||
|
node.noLoop()
|
||||||
|
}
|
||||||
|
t+=0.07
|
||||||
|
};
|
||||||
|
|
||||||
|
node.a=function(){
|
||||||
|
node.remove()
|
||||||
|
}
|
||||||
|
};
|
47
refresh.sh
Executable file
47
refresh.sh
Executable file
|
@ -0,0 +1,47 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
wai=$(dirname $(readlink -f "$0")) # Current script directory
|
||||||
|
projects_dir=${wai}/projects
|
||||||
|
www_dir=${wai}/www
|
||||||
|
projects_out_dir=${www_dir}/projects/
|
||||||
|
template_file=${wai}/template.html
|
||||||
|
|
||||||
|
# Clean before
|
||||||
|
rm -f $www_dir/*.html
|
||||||
|
rm -fr $projects_out_dir/*
|
||||||
|
|
||||||
|
# Build links
|
||||||
|
build_links() {
|
||||||
|
links=""
|
||||||
|
for p in $(find ${projects_dir}/ -maxdepth 1 -mindepth 1 -type d)
|
||||||
|
do
|
||||||
|
name=$(basename $p)
|
||||||
|
[ $name == $1 ] && active="active" || active=""
|
||||||
|
|
||||||
|
links="${links}\n"'<a href="'${name}'.html" class="btn btn-primary '$active'">'${name}'</a>'
|
||||||
|
done
|
||||||
|
tmp=$(mktemp)
|
||||||
|
echo -e "$links" > $tmp
|
||||||
|
echo $tmp
|
||||||
|
}
|
||||||
|
|
||||||
|
# Build html
|
||||||
|
for p in $(find ${projects_dir}/ -maxdepth 1 -mindepth 1 -type d)
|
||||||
|
do
|
||||||
|
name=$(basename $p)
|
||||||
|
html=$projects_out_dir/$name/index.html
|
||||||
|
js=$projects_out_dir/$name/index.js
|
||||||
|
page=${www_dir}/${name}.html
|
||||||
|
|
||||||
|
# Create html
|
||||||
|
echo $p
|
||||||
|
cp -r $p $projects_out_dir/
|
||||||
|
cat $template_file |sed "/\${CONTENT}/r $html"|sed '/\${CONTENT}/d' > $page
|
||||||
|
sed -i "s#\${JS}#${js}#g" $page
|
||||||
|
sed -i "s#\${project_name}#${name}#g" $page
|
||||||
|
|
||||||
|
# Add links
|
||||||
|
links_file=$(build_links $name)
|
||||||
|
sed -i "/\${LINKS}/r $links_file" $page
|
||||||
|
sed -i '/\${LINKS}/d' $page
|
||||||
|
done
|
59
template.html
Normal file
59
template.html
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Physics Simulation</title>
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||||
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||||
|
|
||||||
|
<script type="text/javascript" src="js/bootstrap.min.js"></script>
|
||||||
|
<script type="text/javascript" src="js/p5.min.js"></script>
|
||||||
|
<script type="text/javascript" src="${JS}"></script>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<nav class="navbar navbar-light bg-light">
|
||||||
|
<a class="navbar-brand" href="#">
|
||||||
|
<img src="images/icon.png" width="30" height="30" class="d-inline-block align-top" alt=""> ΦSics
|
||||||
|
</a>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<center>
|
||||||
|
<div class="btn-group">
|
||||||
|
${LINKS}
|
||||||
|
</div>
|
||||||
|
</center>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<br />
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<center>
|
||||||
|
<div id="canvas"></div>
|
||||||
|
</center>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
${CONTENT}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
let p=new p5(${project_name},"canvas")
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
7
www/css/bootstrap.min.css
vendored
Normal file
7
www/css/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1
www/css/bootstrap.min.css.map
Normal file
1
www/css/bootstrap.min.css.map
Normal file
File diff suppressed because one or more lines are too long
BIN
www/images/icon.png
Normal file
BIN
www/images/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
7
www/js/bootstrap.min.js
vendored
Normal file
7
www/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
www/js/bootstrap.min.js.map
Normal file
1
www/js/bootstrap.min.js.map
Normal file
File diff suppressed because one or more lines are too long
3
www/js/p5.min.js
vendored
Normal file
3
www/js/p5.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue