Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
176 user(s) are online (109 user(s) are browsing Forums)

Members: 0
Guests: 176

more...

Headlines

Forum Index


Board index » All Posts (angelheart)




Re: Only one Month to go to VCF - Amiga Anniversary!
Just popping in
Just popping in


@trixie

http://www.laterooms.com
http://www.ebookers.com
http://www.lastminute.com

try city centre rooms, b & b , hostels too.

Go to top


Re: Anyone working on....
Just popping in
Just popping in


@Mikey_C

I think web cam software is very important and should be high on the priority list.

This would be a good project for the donate Sam program, specifically for a talented programmer like Michel Xhaard, a Linux developer who alone wrote, by 2007, 235 webcam drivers.

2007, story
http://www.theinquirer.net/inquirer/n ... x-drivers-235-usb-webcams

Michel Xhaard driver site
http://mxhaard.free.fr/

a SDL based webcam program for Linux
http://sdlcam.raphnet.net/

Go to top


Re: USB devices that work with OS4.1 Update 1
Just popping in
Just popping in


@thread

Maybe a new thread should be started with a common set of files to download and use in checksum tests.

Also speed tests of different media and cpu usage to create an all in one table of results.

Go to top


Re: Sam spontaneously hard-resetting :(
Just popping in
Just popping in


@ChrisH

I dont know how much help this is, but I normally get these symptoms on my PC when overclocking.

So I would suggest :

1) RESET Uboot to default, incase voltage to cpu/speed of cpu/ memory settings have been changed.

2) motherboard/circuits are touching something or a circuit leg touching another circuit.

3) Memory not sitting correctly or memory malfunction.

4) could be CPU not sitting correctly or cpu malfunction/overheat.

5) powersupply malfunction or too low watts (did you add/change the system last few days before problem).

6) Graphics card not sitting / malfunction

First test motherboard only, then add hardware step by step until you reproduce symtoms.

Go to top


Re: DDR2/SATA2/USB2 vs DDR3/SATA3/USB3?
Just popping in
Just popping in


@thread

Power 2.05E

1.6+ Ghz

PowerPC 476FP Embedded Core supports a DDR3 memory controller with coherency support.

SMP from 4,000 to 32,000 DMIPS. 4750 DMIPS/core - up to 8 core.

3 GFLOPS DP-floating point.

1.6 watt

https://www-01.ibm.com/chips/techlib/t ... werPC_476FP_Embedded_Core

Go to top


Re: Accessing xmos from os4
Just popping in
Just popping in


@KimmoK

I was just thinking out loud of what possibilities could the xmos chips have

PC users are currently using 4-8 core cpus, 8GB ram and high end GFX cards to convert HD to x264/DVD etc.

We can play catchup or take a technological jump ahead.

Go to top


Re: Accessing xmos from os4
Just popping in
Just popping in


@thread

If XMOS is reconfigurable hardware, does this mean that one can change eg a data bus from say 64bit to 128bit ?

Could a xmos change a single HD media processor bandwidth to double with 2 HD media processors ?

for example an VIA VX900 Media System Processor.

Go to top


Re: Shorter name for AmigaOne X1000?
Just popping in
Just popping in


@thread


So what is next ?

AmigaOne X600 ?

AmigaOne X1200 ?

AmigaOne X4000 ?

or

AmigaOne X1000 (2 core)
AmigaOne X1004 (4 core)
AmigaOne X1006 (6 core)
AmigaOne X1008 (8 core)

or

AmigaOne X1000 - 64 (2x 64bit core)
AmigaOne X1004 -64 (4x 64bit core)
AmigaOne X1006 -64 (6x 64bit core)
AmigaOne X1008 -64 (8x 64bit core)

AmigaOne X2000 (2 core, 2 xena)
AmigaOne X2004 (4 core, 2 xena)
AmigaOne X2006 (6 core, 2 xena)
AmigaOne X2008 (8 core, 2 xena)

AmigaOne X1000-ATI1GB700 (2 core, ATI PCIE 700 chipset 1 GB)

AmigaOS 4.x.32
AmigaOS 4.x.64 - 64 bit

Il take one : AmigaOne X2008-ATI1GB700-NatamiFX -64
and AmigaOS 4.x.64

ty

(ducks)

Go to top


Re: Any takers for my Final Fantasy XIII (small routine)
Just popping in
Just popping in


@abalaban

done - thanks

Go to top


Re: using grep
Just popping in
Just popping in


@Lio

can u try these :

grep -r wizard /path to folder/

grep -l 'wizard' *.c

grep -l 'wizard' /path to folder/*.c

Go to top


Re: Any takers for my Final Fantasy XIII (small routine)
Just popping in
Just popping in


@Slayer

yes thats another way. But you still need a loop

eg

Rank = 12

For level = 1 to Rank-1
Total = Total + level
Next

print Total*180 + Rank*800

I thought you could try running the code using SDL Basic for OS4.

http://os4depot.net/share/development/language/sdlbasic.lha

If that dont work I can quickly make an Amos version - I dont know if you want a classic/OS3 program.

I only have Windows / AmigaOS 3 here.

edit: the c code
edit 2 few changes from abalaban - thanks :)

#include <stdio.h>

void main()
{
int base, amount, rank, total=0;

printf("Input base : ");
scanf("%d", &base);
printf("\nInput Random amount: ");
scanf("%d", &amount);
printf("\nInput rank: ");
scanf("%d", &rank);

total = (rank * (rank+1))/2;

printf("\nExperience is :%d\n", total*amount + rank*base);
}


Edited by angelheart on 2010/4/13 10:03:12
Edited by angelheart on 2010/4/13 10:04:35
Edited by angelheart on 2010/4/13 16:21:33
Edited by angelheart on 2010/4/13 16:26:46
Go to top


Re: Any takers for my Final Fantasy XIII (small routine)
Just popping in
Just popping in


@Slayer

A basic code would look like this :

Input "Base :",Base
Input "Random Amount :", Amount
Input "Rank :", Rank

Rem take off Amount as its added in the loop

Base = base - Amount

for i = 1 to Rank

Newbase = Base + Amount
TotalExp = TotalExp + Newbase
Base = Newbase
Print TotalExp

next i

I dont have an OS4 machine, so it was hard to find a programming language that would work.
Windows sdlBasic Version 20051016, Jul 12 2007 23:44:09, based upon SciTE Version 1.64, December 1998-June 2005.

Here is a quick SDL Basic Program I made :

Base = 0
Newbase =0
TotalExp = 0

fPrintS("Please Enter Base exp :")
BaseInput$ = zoneInputS( 23, 0, 10, "" )

fPrintS("Please Enter Random Amount :")
RAmountInput$ = zoneInputS( 28, 1, 10, "" )

fPrintS("Please Enter Rank:")
RankInput$ = zoneInputS( 18, 2, 10, " " )

Base = val(BaseInput$)
Rank = val(RankInput$)
Amount = val(RAmountInput$)

cls
' take off Amount as its added in the loop
Base = Base - Amount

for i = 1 to Rank

Newbase = Base + Amount
TotalExp = TotalExp + Newbase

' Show each Rank info
PrintS("Rank: " &i & " TotalExp " &TotalExp)

Base = Newbase

next
' Output the Final Rank and Experience Required
printS( "Rank " &Rank )
printS( "Total Experience Required:" &TotalExp )

wait(500)
waitKey


I hope this is useful to you.
have fun

Go to top


Re: A-EON Interview Part 3..
Just popping in
Just popping in


@gregthecanuck

I google CFE and all I get is MIPS/server/cluster.

Which just makes me drool over the 4 core 64bit MIPS cluster processor BCM 1480.

http://www.broadcom.com/collateral/pb/1480-PB04-R.pdf


Go to top


Re: getting Logitech joypad to work with E-UAE?
Just popping in
Just popping in


@thread

I think these are the mappings on the PC:

Button 0 "Cross"
Button 1 "Square"
Button 2 "Circle"
Button 3 "Triangle"
Button 4 "R1"
Button 5 "L1"
Button 6 "R2"
Button 7 "L2"
Button 8 "Select"
Button 9 "Start"
Button 10 "Right Paddle"
Button 11 "Left Paddle"

Go to top


Re: AmigaOne X1000 Process Edvidences Needed...
Just popping in
Just popping in


@thread

It would be great if we had a corporate website with ALL info about the AmigaOne X1000.

Not just specs, hires images - like a presentation on how this Amiga was made.

Videos running AmigaOS and speed tests.
Graphs etc
Full price listed etc.

Also a release date LIVE countdown every min.

Once the counter reaches zero the BUY links are enabled to all the distributers on the same day, for immediate dispatch !

like this site:
http://event.asus.com/desktop/cs5110/en/

Go to top


Re: Have you got your Amiga Future mag yet?
Just popping in
Just popping in


@ChrisH

I got mine on Monday and a good read too.

Go to top


Re: Paying an Amiga developer
Just popping in
Just popping in


@thread

get a freelancer website have small projects and a good idea of prices.

A good developer can easily port to Amiga when given API documentation and a way to test it.

http://www.getafreelancer.com/projects/by-job/C-C.html

Go to top


Re: AmigaOS 4.1 update 2 usability requests
Just popping in
Just popping in


@all

Thanks ! Keep them coming - just updated main page

Go to top


AmigaOS 4.1 update 2 usability requests
Just popping in
Just popping in


Now that we have AmigaOS 4.1 update 1, I think it would be good to list features or tweeks to improve AmigaOS 4.1 update for the next version.

It appears alot of time is lost getting the users previous pref settings set into the update.

My feature request would be :

Ability for an application to save its prefs in a language Ringhio understands.

In this way a prefs file (once executed) can communicate to Ringhio the settings an application is to use , and then Ringio can communicate to the new application to auto change its settings.

I know Ringhio was not designed for this, but it would allow easy prefs transfer / communication and standardized settings for all application prefs.



Current List

Improved Amidock
- Visual, transparancy and UI improvements
- Auto/manual Amidock icon scaling, on mouse over Highlight and activation, icon effects
- Improved Drag n Drop via settings window.
- Auto-Hide and auto Pop-Up
- On application start - Amidock deactivation
- Clock / Date dockie - transparency and digital display options


Prefs
- Merge prefs for GUI, screenmode, printer, etc
- WBPattern with full screen aspect ratio
- printer printable graphics area manual resize
- Improved Icon Edit
- Improved pointer prefs
- Scaling for gadgets
- Update GUI prefs, UI improvements, preview support
- ASL prefs improvements for UI and responsivness

Workbench Startup
- Support Drag n Drop on Prefs file
- Support Right Click on any file -> set start in Workbench startup
- Support execution of Scripts (AmigaDos/Perl/Arexx)
- Support ability to set order and execution priority
- Support a way for an Installer to add files to WB Startup

PNG icon support via icon.library

listbrowser.class
- Drag n Drop features

Theme Manager with preview

Improved Icon / File load in directory display speed issues. Support for display while still reading.

Option to use old / standard Icon set during installation

Ringhio
- USB device attachment on/off notification

Screen Blankers - More 3D and OpenGL blankers

Keymap switcher + shortcuts

Improved Shell
- KingCon like features, default scroll buffer, scroll bar

Animated Iconification options

Improved Workbench, file manager, thumbnails support

Support for 68k or PPC native (auto) identification

Improved Datatype System

Improved look for Calculator and Clock

Appstore client

Hardware accelerated Video encode/decode



Edited by angelheart on 2010/1/18 11:24:13
Edited by angelheart on 2010/1/18 11:27:01
Go to top


Re: A few new Timberwolf screenshots
Just popping in
Just popping in


If only we had a site like XMOS with full diagrams and docs !

Go to top



TopTop
« 1 2 3 4 (5) 6 7 8 9 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project