-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- (c) WidthPadding Industries 1987 0|412|0 -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=-




Jayenkai

SpinalWatch

5th July 2023

What is/isn't happening?
I'd at least add a catch for listEnd, to stop the listStart going further than 4-positions from the end.
[code]if (listEnd>listMax) {
listEnd=listMax;
listStart=listEnd-4;
if(listStart<0) listStart=0;
}*snip*


spinal

SpinalWatch

5th July 2023

bloody hell, I've forgot how to do a simple scrolling menu...
My brain can't see whats wrong here :-(
[code]
int listMax = sizeof (menuText) / sizeof (menuText[0]);
int listStart = menuItem - 2;
if(listStart<0) listStart=0;
int lis*snip*


Jayenkai

What Have You Done - June 2023

2nd July 2023

Ups
What did you get done this Month?
[*]Sold the House
[*]Bought a Bungalow
[*]Forms
[*]Forms
[*]Forms
Did everything turn out as planned?
We're not quite done yet.
Another form was mailed off on Saturday. Hopefully this is the last one..?! *snip*


Jayenkai

QOTD - July 2023

2nd July 2023

[code]
__
/ \\
| 00__
| ___)
| / |
|___| ASCII Art is
| O For The Win
| | ||
| | ||
|_w_v
| |
| | |
| | |
|__)_)
[/code]


Kuron

Poll Chat

8th June 2023

Dunno, and really a non-issue. I disable it simply because it is to the point it often reminds me how out of touch I am with the world around me. LOL
I simply use the ''Block Element'' feature of uBlock Origin:
[code]
! 2023-06-08 (Linkage) *snip*


Jayenkai

What Have You Done - May 2023

31st May 2023

Ups
What did you get done this Month?
[*]Four Games
[*]Four Choons
[*]Bonus Choon
[*]Planning Ahead
Did everything turn out as planned?
The things that have happened so far have happened well.
The planned things that are yet to happen, haven't *snip*


Pakz

Mine, Slime and Monsters - May 2023

26th May 2023

I am using multiple points here that the particles use for gravity.
edit:
this was the monkeyX version :
[code]
Import mojo
Class gravitypoint
Field x:Int,y:Int
Method New(x:Int,y:Int)
Self.x = x
Self.y = y
End Method
Method draw()
Se*snip*


spinal

Machine Made Max

25th May 2023

trying a 'simpler' way. got Poe trying to create a 3d texture with a loaded image on it, then rotate it. So far so good....
Then getting Poe to add a background texture falls flat on its face. Just a white square, seemingly nothing wrong with the *snip*


Pakz

Laser beam with sin effect

20th May 2023

Weapon effect for a platform or top down game


spinal

Machine Made Max

12th May 2023

Arduino code snippet to read the GY-271 magnetometer and a GY-521 accelerometer values.
[code]
#include <Wire.h>
const int MPU_ADDR = 0x68; // I2C address of MPU-6050
const int MAG_ADDR = 0x0D; // I2C address of QMC5883L
int16_t gyro_x, gyro_y, *snip*


Afr0

Images inside Blitz Code

8th May 2023

Yeah, except you should save them as binary data as that makes them faster to work with.
And you should save them as COMPRESSED binary data. To that end, here's a variation of LZ compression that I managed to get ChatGPT to wrangle from C++ into a Bli*snip*


spinal

Mystify...

6th May 2023

As I am making a start on the backgrounds for Max FPS, I'll plonk them in the forum here. The first is a basic 'Mysstify' screenaver type thingy.
[code]
Const SCREENX=800 ; 2 Const for the set Resolution
Const SCREENY=600 *snip*


Jayenkai

Sprite animation.

28th April 2023

(General grump rather than specific to your game.)
Ugh.. I hate touch controls. One of the biggest flaws with both GotoJSE and Browsercade is the absolute bag-o-shite that the touch controls are!
But it's good that you're looking into ways to *snip*


spinal

Machine Made Max

26th April 2023

I think it's time to ask some real people if they can see what I'm doing wrong or inefficiently...
[code]
def stutter_text(text):
# Split the text into sentences
sentences = re.split(''(?<!\\w\\.\\w.)(?<![A-Z][a-z]\\.)(?<=\\.|\\?*snip*


spinal

Machine Made Max

30th March 2023

Giving javascript a try...
[code]
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<script src=&quot (Linkage)
<script src=''code.js''></script>
</head>
<body>
&lt*snip*


Jayenkai

Google Bard

27th March 2023

I just tried getting Bard to do a quick and simple ''Cut a spritesheet into 9 sprites and display them at random positions on a WebGL canvas'' request. The results were horrifically bad. None of the examples would run, the language skipped out TO*snip*


spinal

Machine Made Max

21st March 2023

This code *nearly* detects the glitches, but weirdly not always. Thats a puzzle.
[code]
'''
To install more voices (they WILL be needed)
Open Regedit and navigate to Computer\\HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Speech_OneCore\\
Right clic*snip*


spinal

Machine Made Max

20th March 2023

In theory, yes, in practice....
This is a mess...
[code]
def stutter_text(text):
# Split the text into sentences
sentences = re.split(''(?<!\\w\\.\\w.)(?<![A-Z][a-z]\\.)(?<=\\.|\\?)\\s(?![0-9])'', text)
#print(text)
# put a*snip*


spinal

Machine Made Max

20th March 2023

Currently its this...
[code]
# Draw the mouth
M1 = mouth
if M1 > M: M = M1
# M/13107
frame = int(M/2500)
M=M-32
if M<1024: M=1024
[/code]
[code]
if frame == 0:
bu*snip*


spinal

Machine Made Max

19th March 2023

OK, now that I have speach working quite well, I need to work on the face some more.
So after a few attempts to get chatGPT to draw me some simple concentric circles that are layered and move in parallax according to the mouse x location, with a few &quot*snip*


spinal

Machine Made Max

14th March 2023

I think I've got the speaking much closer to what I'm aiming for...
2023/11/max_test_14_3_23 (.mp3)
[code]
'''
To install more voices (they WILL be needed)
Open Regedit and navigate to Computer\\HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft*snip*


Jayenkai

JXMb (Latest JMTrackr)

13th March 2023

Started work on a new version of JMTrackr last week, and it's currently at a half-assed testable stage.
Try it out here
There's an interpretation of Manic Miner preloaded, mostly for quick test purposes.
There are 16 patterns for each of the fou*snip*


spinal

Machine Made Max

10th March 2023

It's getting better...
[code]
import random
import time
import wave
import tempfile
import os
import numpy as np
import pyttsx3
import pyaudio
import re
#from datetime import datetime
#random.seed(datetime.now().timestamp())

def spea*snip*


spinal

Machine Made Max

8th March 2023

[code]
import random
import time
import wave
import tempfile
import os
import numpy as np
import pyttsx3
import pyaudio
def speak(text):
# Initialize the text-to-speech engine
engine = pyttsx3.init()
# Set the text-to-speech paramet*snip*


Jayenkai

Machine Made Max

5th March 2023

I had a think in the bath..
You're currently doing each word on its own, which, I think, is the cause of the gaps. Can you, at random intervals, Stack the next couple of words together.. include spaces, still, but .. I would expect the speech engine*snip*

Newer Posts More - Older Posts